diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-09-12 17:31:52 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-09-25 00:30:49 +0300 |
commit | 984a0217af64c734938c330b09ed21d1253dea8d (patch) | |
tree | 50277861e059be41587b17a318afb68cb03e038c /unit-tests | |
parent | d30e1a0e8f5e4f324e169d87908a5134a58aa449 (diff) |
Make use of libpkgconf library
Diffstat (limited to 'unit-tests')
-rw-r--r-- | unit-tests/function/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unit-tests/function/driver.cxx b/unit-tests/function/driver.cxx index 9286a48..80c4120 100644 --- a/unit-tests/function/driver.cxx +++ b/unit-tests/function/driver.cxx @@ -56,7 +56,7 @@ namespace build2 f["scoped"] = [](const scope&, names a) {return a;}; f["scoped_void"] = [](const scope&, names) {}; - f["scoped"] = &scoped; + f["scoped"] = &scoped; f["scoped_void"] = &scoped_void; f[".qual"] = []() {return "abc";}; |