Advertisement
Guest User

Untitled

a guest
Jan 1st, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.02 KB | None | 0 0
  1. Index: include/boost/unordered/unordered_map.hpp
  2. ===================================================================
  3. --- include/boost/unordered/unordered_map.hpp   (revision 13030)
  4. +++ include/boost/unordered/unordered_map.hpp   (working copy)
  5. @@ -9,6 +9,10 @@
  6.  #ifndef BOOST_UNORDERED_UNORDERED_MAP_HPP_INCLUDED
  7.  #define BOOST_UNORDERED_UNORDERED_MAP_HPP_INCLUDED
  8.  
  9. +#if (_MSC_VER >= 1700)
  10. +#define BOOST_NO_0X_HDR_INITIALIZER_LIST
  11. +#endif
  12. +
  13.  #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  14.  # pragma once
  15.  #endif
  16. Index: include/boost/unordered/unordered_set.hpp
  17. ===================================================================
  18. --- include/boost/unordered/unordered_set.hpp   (revision 13030)
  19. +++ include/boost/unordered/unordered_set.hpp   (working copy)
  20. @@ -9,6 +9,10 @@
  21.  #ifndef BOOST_UNORDERED_UNORDERED_SET_HPP_INCLUDED
  22.  #define BOOST_UNORDERED_UNORDERED_SET_HPP_INCLUDED
  23.  
  24. +#if (_MSC_VER >= 1700)
  25. +#define BOOST_NO_0X_HDR_INITIALIZER_LIST
  26. +#endif
  27. +
  28.  #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29.  # pragma once
  30.  #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement