Skip to content

Commit

Permalink
Merge pull request #2344 from wmtan/FixLongLongBug
Browse files Browse the repository at this point in the history
FWCore/Utilities Fixes -- Fix bug that prevents putting a long long or unsigned long long into an event.
  • Loading branch information
nclopezo committed Feb 10, 2014
2 parents 8c0106d + acef218 commit fc8d4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FWCore/Utilities/src/TypeWithDict.cc
Expand Up @@ -174,8 +174,8 @@ namespace edm {
{std::string("unsigned int"), TypeWithDict(typeid(unsigned int))},
{std::string("long"), TypeWithDict(typeid(long))},
{std::string("unsigned long"), TypeWithDict(typeid(unsigned long))},
{std::string("long long"), TypeWithDict(typeid(int))},
{std::string("unsigned long long"), TypeWithDict(typeid(int))},
{std::string("long long"), TypeWithDict(typeid(long long))},
{std::string("unsigned long long"), TypeWithDict(typeid(unsigned long long))},
{std::string("float"), TypeWithDict(typeid(float))},
{std::string("double"), TypeWithDict(typeid(double))},
// {std::string("long double"), TypeWithDict(typeid(long double))}, // ROOT does not seem to know about long double
Expand Down

0 comments on commit fc8d4ba

Please sign in to comment.