one endif too much; refs #12

master
Marc Wäckerlin 10 years ago
parent cba752892d
commit 6fd958d415
  1. 10
      src/mrw/checkcxx11.hxx

@ -37,10 +37,11 @@
# else
/// Code is compiled with an old non C++11 standard compliant compiler
/** There are workarounds for old non C++11 compatible
compilers. These workarounds are deprecated, but will remain until
most compilers fully support C++11. So this workaround will be
removed in future releases, when support for C++11 is more
common. Only rely on this workaround, if you really have to. */
compilers. These workarounds are deprecated, but will
remain until most compilers fully support C++11. So this
workaround will be removed in future releases, when support
for C++11 is more common. Only rely on this workaround, if
you really have to. */
# define MRW__OLD_PRE11_COMPILER
# warning you need a C++11 compliant compiler, on gcc: add -std=c++11
# warning emulating C++11 - this changes the way you use the library
@ -48,7 +49,6 @@
# warning refere to the library documentation for more details
# endif
# endif
# endif
# ifdef MRW__OLD_PRE11_COMPILER
# if __cplusplus<200300L

Loading…
Cancel
Save