libmoost
/home/mhx/git/github/libmoost/include/moost/compiler/attributes/unused.hpp
Go to the documentation of this file.
00001 /* vim:set ts=3 sw=3 sts=3 et: */
00028 #ifndef MOOST_COMPILER_ATTRIBUTES_UNUSED_HPP__
00029 #define MOOST_COMPILER_ATTRIBUTES_UNUSED_HPP__
00030 
00031 #if defined(__GNUC__)
00032 #  define unused__ __attribute__((__unused__))
00033 #else
00034 #  define unused__
00035 #endif
00036 
00037 #endif