prefix.hpp 446 B

1234567891011
  1. // Copyright 2009 Daniel James.
  2. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #if defined(_WIN32_WCE)
  5. // The standard windows mobile headers trigger this warning so I disable it
  6. // before doing anything else.
  7. #pragma warning(disable : 4201) // nonstandard extension used :
  8. // nameless struct/union
  9. #endif