Skip to content

Commit

Permalink
Fixed indentation of preprocessor directives.
Browse files Browse the repository at this point in the history
Fixed indentation of preprocessor directives to make it consistent with
other headers.

Signed-off-by: Botond Ballo <botond.ballo@gmail.com>
  • Loading branch information
botond-ballo committed Nov 19, 2011
1 parent 315e563 commit 573614a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/zmq.hpp
Expand Up @@ -29,15 +29,15 @@

// Detect whether the compiler supports C++11 rvalue references.
#if (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 2)) && defined(__GXX_EXPERIMENTAL_CXX0X__))
#define ZMQ_HAS_RVALUE_REFS
# define ZMQ_HAS_RVALUE_REFS
#endif
#if (defined(__clang__))
#if __has_feature(cxx_rvalue_references)
#define ZMQ_HAS_RVALUE_REFS
#endif
# if __has_feature(cxx_rvalue_references)
# define ZMQ_HAS_RVALUE_REFS
# endif
#endif
#if (defined(_MSC_VER) && (_MSC_VER >= 1600))
#define ZMQ_HAS_RVALUE_REFS
# define ZMQ_HAS_RVALUE_REFS
#endif

namespace zmq
Expand Down

0 comments on commit 573614a

Please sign in to comment.