Changed a macro to use ifndef rather than if to avoid warnings.

[SVN r83761]
This commit is contained in:
Ronald Garcia 2013-04-03 23:21:29 +00:00
parent 9eb51cbe82
commit b9ba4320e4

View File

@ -64,7 +64,7 @@ namespace multi_array_types {
// object creation in small-memory environments. Thus, the objects
// can be left undefined by defining BOOST_MULTI_ARRAY_NO_GENERATORS
// before loading multi_array.hpp.
#if !BOOST_MULTI_ARRAY_NO_GENERATORS
#ifndef BOOST_MULTI_ARRAY_NO_GENERATORS
namespace {
multi_array_types::extent_gen extents;
multi_array_types::index_gen indices;