summaryrefslogtreecommitdiff
path: root/boost/local_function/detail/preprocessor/line_counter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/local_function/detail/preprocessor/line_counter.hpp')
-rw-r--r--boost/local_function/detail/preprocessor/line_counter.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/boost/local_function/detail/preprocessor/line_counter.hpp b/boost/local_function/detail/preprocessor/line_counter.hpp
new file mode 100644
index 0000000000..ffb90a65df
--- /dev/null
+++ b/boost/local_function/detail/preprocessor/line_counter.hpp
@@ -0,0 +1,23 @@
+
+// Copyright (C) 2009-2012 Lorenzo Caminiti
+// Distributed under the Boost Software License, Version 1.0
+// (see accompanying file LICENSE_1_0.txt or a copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+// Home at http://www.boost.org/libs/local_function
+
+#ifndef BOOST_LOCAL_FUNCTION_DETAIL_PP_LINE_COUNTER_HPP_
+#define BOOST_LOCAL_FUNCTION_DETAIL_PP_LINE_COUNTER_HPP_
+
+#include <boost/config.hpp>
+
+// PUBLIC //
+
+// MSVC has problems expanding __LINE__ so use (the non standard) __COUNTER__.
+#ifdef BOOST_MSVC
+# define BOOST_LOCAL_FUNCTION_DETAIL_PP_LINE_COUNTER __COUNTER__
+#else
+# define BOOST_LOCAL_FUNCTION_DETAIL_PP_LINE_COUNTER __LINE__
+#endif
+
+#endif // #include guard
+