]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/loaderaction.h
Use metaprogramming constructs from std
[libs/datafile.git] / source / loaderaction.h
index c7c593829a1b24a3ccd161dad400f14b06d207e8..6931f4849ff21ff6fee354fb9ac904011422e284 100644 (file)
@@ -234,7 +234,7 @@ class LoaderFuncNBound1: public LoaderAction
 {
 protected:
        typedef void (L::*FuncType)(B0, Args...);
-       typedef typename RemoveReference<B0>::Type Bound0Type;
+       typedef typename std::remove_reference<B0>::type Bound0Type;
 
        FuncType func;
        Bound0Type bound0;