]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/spirit/example/x3/actions.cpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / spirit / example / x3 / actions.cpp
index b7fa6577156ff525cc636d596c2609e2b842ca90..7a80fe8342c16ee662e3ebc191750bad8d4b4124 100644 (file)
@@ -42,6 +42,7 @@ int main()
 
     { // example using C++14 lambda
 
+        using boost::spirit::x3::_attr;
         char const *first = "{44}", *last = first + std::strlen(first);
         auto f = [](auto& ctx){ std::cout << _attr(ctx) << std::endl; };
         parse(first, last, '{' >> int_[f] >> '}');