• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2013, Petr Machata, Red Hat Inc.
2 //
3 // Use modification and distribution are subject to the boost Software
4 // License, Version 1.0.  (See http://www.boost.org/LICENSE_1_0.txt).
5 
6 #include "../../../boost/atomic.hpp"
7 #include "../../../boost/static_assert.hpp"
8 
main(int argc,char * argv[])9 int main(int argc, char *argv[])
10 {
11   BOOST_STATIC_ASSERT(BOOST_ATOMIC_FLAG_LOCK_FREE);
12   return 0;
13 }
14