From 02445fd874b965cfd2d842ee4978304156c2c460 Mon Sep 17 00:00:00 2001 From: Philippe Canal <pcanal@fnal.gov> Date: Tue, 22 Jan 2013 18:07:52 +0000 Subject: [PATCH] Import revision 48376 from the v5-34-00 patch branch: Extend STLArgs to properly support std::bitset. This fixes <http://savannah.cern.ch/bugs/?99947> git-svn-id: http://root.cern.ch/svn/root/trunk@48377 27541ba8-7e3a-0410-8455-c3a389f83636 --- core/metautils/src/TClassEdit.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/metautils/src/TClassEdit.cxx b/core/metautils/src/TClassEdit.cxx index f92f31f6bde..232fbf42457 100644 --- a/core/metautils/src/TClassEdit.cxx +++ b/core/metautils/src/TClassEdit.cxx @@ -319,7 +319,8 @@ int TClassEdit::STLArgs(int kind) // Return number of arguments for STL container before allocator static const char stln[] =// min number of container arguments - { 1, 1, 1, 1, 3, 3, 2, 2 }; + // vector, list, deque, map, multimap, set, multiset, bitset + { 1, 1, 1, 1, 3, 3, 2, 2, 1 }; return stln[kind]; } -- GitLab