]> git.lyx.org Git - lyx.git/blobdiff - src/support/functional.h
thinko
[lyx.git] / src / support / functional.h
index 47d9c4596646169be53ff5b56a3f9625352b0891..6673dedb81485796abe39aeea66d23fb614995bd 100644 (file)
 #ifndef LYX_FUNCTIONAL_H
 #define LYX_FUNCTIONAL_H
 
-#ifdef LYX_USE_TR1
-
 #include <functional>
 
-#ifdef __GNUC__
-#include <tr1/functional>
-#endif
-
 namespace lyx
 {
-       using std::tr1::function;
+       using std::function;
 }
 
-#else
-
-#include <boost/function.hpp>
-#include <boost/functional.hpp>
-
-namespace lyx
-{
-       using boost::function;
-}
-
-#endif
-
 
 #endif