1. 24 Jul, 2014 1 commit
    • Ewen McNeill's avatar
      Remove "const" from std::map key · 217e0ae9
      Ewen McNeill authored
      Updated:
          src/metdata.hpp: Remove explicit "const" from key of std::map<>
             because the key is implicitly const already (see
             http://en.cppreference.com/w/cpp/container/map and
             http://www.cplusplus.com/reference/map/map/).
      
      On some platforms (such as z/OS UNIX System Services) explicitly
      declaring the map key as "const" causes template expansion errors
      as it tries to create separate allocators for "const const std::string"
      and "const std::string" only to find that they clash.  (Presumably
      some compilers collapse these into one earlier.)
      
      There are no template expansion errors if the map key is left to be
      implicitly const.
      217e0ae9
  2. 23 Jul, 2014 7 commits
  3. 22 Jul, 2014 7 commits
  4. 13 Jul, 2014 1 commit
  5. 12 Jul, 2014 5 commits
  6. 09 Jul, 2014 9 commits
  7. 07 Jul, 2014 4 commits
  8. 06 Jul, 2014 2 commits
  9. 03 Jul, 2014 4 commits