summaryrefslogtreecommitdiffstats
path: root/src/config.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.cc')
-rw-r--r--src/config.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cc b/src/config.cc
index bb967b4..5d62ee5 100644
--- a/src/config.cc
+++ b/src/config.cc
@@ -488,7 +488,7 @@ namespace Astroid {
void Config::merge_ptree(const ptree &pt) {
function<void(const ptree &,
const ptree::path_type &,
- const ptree&)> method = bind (&Config::merge, this, _1, _2, _3);
+ const ptree&)> method = bind (&Config::merge, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3);
traverse(pt, method);
}