[applied] Bug 28319 - re-fix of rhbz1951526 - SELF CHECK FAILED for 'gimp-2.10'

Message ID 87sftqd0yo.fsf@redhat.com
State New
Headers
Series [applied] Bug 28319 - re-fix of rhbz1951526 - SELF CHECK FAILED for 'gimp-2.10' |

Commit Message

Dodji Seketeli Jan. 14, 2022, 11:13 a.m. UTC
  Hello,

This commit re-visit the commit below:

    commit 1cfbff1b3037d1049bdff7e86de27c3a86af23b3
    Author: Dodji Seketeli <dodji@redhat.com>
    Date:   Mon Jun 7 16:07:50 2021 +0200

	rhbz1951526 - SELF CHECK FAILED for 'gimp-2.10'

	This is a fix for bug https://bugzilla.redhat.com/show_bug.cgi?id=1951526.

Basically, this commits makes is so that two enums below are
considered equal by libabigail:

     enum foo // This is foo #1
     {
       e0 = 0;
       e1 = 1;
       e2 = 2;
     };

     enum foo  // This is foo #2
     {
       e0 = 0;
       e1 = 1;
       e2 = 2;
       e_added = 1; // This enumerator is considered redundant
       	       	    // with the enumerator e1 because their values
		    // are the same.
     };

With this patch, foo #1 and foo #2 are considered equal, just like in
the original commit 1cfbff1b.  In the original commit however, this
was achieved by comparing the enums without considering their
enumerator names.  This was named "binary-only enum comparison".  In
reality, that approach was too big of a hammer and was causing the
issues raised in the bug.  Namely, type canonicalization would
conflate anonymous enums that were unrelated (precisely because their
enumerator names were different), leading to spurious type change
reports when comparing abixml files pre-dating commit 1cfbff1b with
posterior abixml files.

If I refer to the example above with foo #1 and #2, this patch detects
that the value of the enumerator 'e_added' is redundant with the value
of the enumerator e1.  As such, the two foo #1 and #2 are considered
equal.  Enumerator names are now fully taken into account.

With this precise approach, it now seems we can do away with the
careful dance of using "binary-only enum comparison" at some precise
times of the libabigail pipeline.  Now, we can just use the new enum
comparison scheme all the time.  Leading to less (complicated) code
and a hopefully accurate representation.

	* include/abg-ir.h (environment::use_enum_binary_only_equality):
	Remove.
	* src/abg-comparison.cc (compute_diff): In the overload for
	enum_type_decl, stop using binary-only-equality for enums.
	* src/abg-dwarf-reader.cc
	(read_context::compare_before_canonicalisation): Likewise.
	* src/abg-ir.cc (environment::use_enum_binary_only_equality):
	Remove.
	(enumerators_values_are_equal)
	(is_enumerator_value_present_in_enum)
	(is_enumerator_value_redundant): Define new static functions.
	(equals): In the overload for enum_type_decl, use the new
	is_enumerator_value_redundant to detect if two enums are equal
	modulo a redundant enumerator value.  In that case, consider they
	are equal.
	* tests/data/test-abidiff/test-enum0-report.txt: Adjust.
	* tests/data/test-annotate/test-anonymous-members-0.o.abi: Likewise.
	* tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi: Likewise.
	* tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi: Likewise.
	* tests/data/test-diff-dwarf/PR25058-liblttng-ctl-report-1.txt: Likewise.
	* tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi: Likewise.
	* tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi: Likewise.
	* tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi: Likewise.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
---
 include/abg-ir.h                              |     6 -
 src/abg-comparison.cc                         |     4 -
 src/abg-dwarf-reader.cc                       |     3 -
 src/abg-ir.cc                                 |   165 +-
 tests/data/test-abidiff/test-enum0-report.txt |    11 +
 .../test-anonymous-members-0.o.abi            |    36 +-
 ...st18-pr19037-libvtkRenderingLIC-6.1.so.abi |  2949 +--
 ...19-pr19023-libtcmalloc_and_profiler.so.abi |    11 +-
 .../PR25058-liblttng-ctl-report-1.txt         |    24 +-
 ...st18-pr19037-libvtkRenderingLIC-6.1.so.abi |  2945 +--
 ...19-pr19023-libtcmalloc_and_profiler.so.abi |    10 +-
 .../test22-pr19097-libstdc++.so.6.0.17.so.abi | 15094 ++++++++--------
 12 files changed, 10678 insertions(+), 10580 deletions(-)
  

Patch

diff --git a/include/abg-ir.h b/include/abg-ir.h
index a0ef29b9..a2f4e1a7 100644
--- a/include/abg-ir.h
+++ b/include/abg-ir.h
@@ -178,12 +178,6 @@  public:
   void
   decl_only_class_equals_definition(bool f) const;
 
-  bool
-  use_enum_binary_only_equality() const;
-
-  void
-  use_enum_binary_only_equality(bool f) const;
-
   bool
   is_void_type(const type_base_sptr&) const;
 
diff --git a/src/abg-comparison.cc b/src/abg-comparison.cc
index 84fa2f17..71048ce2 100644
--- a/src/abg-comparison.cc
+++ b/src/abg-comparison.cc
@@ -4178,11 +4178,8 @@  compute_diff(const enum_type_decl_sptr first,
 					second->get_underlying_type(),
 					ctxt);
   enum_diff_sptr d(new enum_diff(first, second, ud, ctxt));
-  bool s = first->get_environment()->use_enum_binary_only_equality();
-  first->get_environment()->use_enum_binary_only_equality(true);
   if (first != second)
     {
-      first->get_environment()->use_enum_binary_only_equality(false);
       compute_diff(first->get_enumerators().begin(),
 		   first->get_enumerators().end(),
 		   second->get_enumerators().begin(),
@@ -4190,7 +4187,6 @@  compute_diff(const enum_type_decl_sptr first,
 		   d->priv_->enumerators_changes_);
       d->ensure_lookup_tables_populated();
     }
-  first->get_environment()->use_enum_binary_only_equality(s);
   ctxt->initialize_canonical_diff(d);
 
   return d;
diff --git a/src/abg-dwarf-reader.cc b/src/abg-dwarf-reader.cc
index 3f716944..b4617620 100644
--- a/src/abg-dwarf-reader.cc
+++ b/src/abg-dwarf-reader.cc
@@ -4149,12 +4149,9 @@  public:
     ABG_ASSERT(!e->canonicalization_is_done());
 
     bool s0 = e->decl_only_class_equals_definition();
-    bool s1 = e->use_enum_binary_only_equality();
     e->decl_only_class_equals_definition(true);
-    e->use_enum_binary_only_equality(true);
     bool equal = l == r;
     e->decl_only_class_equals_definition(s0);
-    e->use_enum_binary_only_equality(s1);
     return equal;
   }
 
diff --git a/src/abg-ir.cc b/src/abg-ir.cc
index 8d0c72a9..82971253 100644
--- a/src/abg-ir.cc
+++ b/src/abg-ir.cc
@@ -3499,70 +3499,6 @@  void
 environment::decl_only_class_equals_definition(bool f) const
 {priv_->decl_only_class_equals_definition_ = f;}
 
-/// Test if comparing enums is done by looking only at enumerators
-/// values.
-///
-/// For enums, using 'binary-only' equality means looking only at
-/// values of enumerators (not names of enumerators) when comparing
-/// enums.  This means we are only considering the binary equality of
-/// enums, not source equality.
-///
-/// The two enums below are "binary equal", but not "source-level
-/// equal":
-///
-///     enum foo
-///     {
-///       e0 = 0;
-///       e1 = 1;
-///       e2 = 2;
-///     };
-///
-///     enum foo
-///     {
-///       e0 = 0;
-///       e1 = 1;
-///       e2 = 2;
-///       e_added = 1;
-///     };
-///
-/// @return true iff using 'binary-only' equality for enums
-/// comparison.
-bool
-environment::use_enum_binary_only_equality() const
-{return priv_->use_enum_binary_only_equality_;}
-
-/// Setter for the property that determines that comparing enums is
-/// done by looking only at enumerators values.
-///
-/// For enums, using 'binary-only' equality means looking only at
-/// values of enumerators (not names of enumerators) when comparing
-/// enums.  This means we are only considering the binary equality of
-/// enums, not source equality.
-///
-/// The two enums below are "binary equal", but not "source-level
-/// equal":
-///
-///     enum foo
-///     {
-///       e0 = 0;
-///       e1 = 1;
-///       e2 = 2;
-///     };
-///
-///     enum foo
-///     {
-///       e0 = 0;
-///       e1 = 1;
-///       e2 = 2;
-///       e_added = 1;
-///     };
-///
-/// @param f true iff using 'binary-only' equality for enums
-/// comparison.
-void
-environment::use_enum_binary_only_equality(bool f) const
-{priv_->use_enum_binary_only_equality_ = f;}
-
 /// Test if a given type is a void type as defined in the current
 /// environment.
 ///
@@ -5137,7 +5073,7 @@  equals(const decl_base& l, const decl_base& r, change_kind* k)
   interned_string ln = get_decl_name_for_comparison(l);
   interned_string rn = get_decl_name_for_comparison(r);
 
-  ;  /// If both of the current decls have an anonymous scope then let's
+  /// If both of the current decls have an anonymous scope then let's
   /// compare their name component by component by properly handling
   /// anonymous scopes. That's the slow path.
   ///
@@ -17477,6 +17413,82 @@  is_enumerator_present_in_enum(const enum_type_decl::enumerator &enr,
   return false;
 }
 
+/// Check if two enumerators values are equal.
+///
+/// This function doesn't check if the names of the enumerators are
+/// equal or not.
+///
+/// @param enr the first enumerator to consider.
+///
+/// @param enl the second enumerator to consider.
+///
+/// @return true iff @p enr has the same value as @p enl.
+static bool
+enumerators_values_are_equal(const enum_type_decl::enumerator &enr,
+			     const enum_type_decl::enumerator &enl)
+{return enr.get_value() == enl.get_value();}
+
+/// Detect if a given enumerator value is present in an enum.
+///
+/// This function looks inside the enumerators of a given enum and
+/// detect if the enum contains at least one enumerator or a given
+/// value.  The function also detects if the enumerator value we are
+/// looking at is present in the enum with a different name.  An
+/// enumerator with the same value but with a different name is named
+/// a "redundant enumerator".  The function returns the set of
+/// enumerators that are redundant with the value we are looking at.
+///
+/// @param enr the enumerator to consider.
+///
+/// @param enom the enum to consider.
+///
+/// @param redundant_enrs if the function returns true, then this
+/// vector is filled with enumerators that are redundant with the
+/// value of @p enr.
+///
+/// @return true iff the function detects that @p enom contains
+/// enumerators with the same value as @p enr.
+static bool
+is_enumerator_value_present_in_enum(const enum_type_decl::enumerator &enr,
+				    const enum_type_decl &enom,
+				    vector<enum_type_decl::enumerator>& redundant_enrs)
+{
+  bool found = false;
+  for (const auto &e : enom.get_enumerators())
+    if (enumerators_values_are_equal(e, enr))
+      {
+	found = true;
+	if (e != enr)
+	  redundant_enrs.push_back(e);
+      }
+
+  return found;
+}
+
+/// Check if an enumerator value is redundant in a given enum.
+///
+/// Given an enumerator value, this function detects if an enum
+/// contains at least one enumerator with the the same value but with
+/// a different name.
+///
+/// @param enr the enumerator to consider.
+///
+/// @param enom the enum to consider.
+///
+/// @return true iff @p enr is a redundant enumerator in enom.
+static bool
+is_enumerator_value_redundant(const enum_type_decl::enumerator &enr,
+			      const enum_type_decl &enom)
+{
+  vector<enum_type_decl::enumerator> redundant_enrs;
+  if (is_enumerator_value_present_in_enum(enr, enom, redundant_enrs))
+    {
+      if (!redundant_enrs.empty())
+	return true;
+    }
+    return false;
+}
+
 /// Compares two instances of @ref enum_type_decl.
 ///
 /// If the two intances are different, set a bitfield to give some
@@ -17526,10 +17538,8 @@  equals(const enum_type_decl& l, const enum_type_decl& r, change_kind* k)
   // Now compare the enumerators.  Note that the order of declaration
   // of enumerators should not matter in the comparison.
   //
-  // Also if the value of
-  // abigail::ir::environment::use_enum_binary_only_equality() is
-  // true, then enumerators are compared by considering their value
-  // only.  Their name is not taken into account.
+  // Also if an enumerator value is redundant, that shouldn't impact
+  // the comparison.
   //
   // In that case, note that the two enums below are considered equal:
   //
@@ -17545,16 +17555,15 @@  equals(const enum_type_decl& l, const enum_type_decl& r, change_kind* k)
   //       e0 = 0;
   //       e1 = 1;
   //       e2 = 2;
-  //       e_added = 1;
+  //       e_added = 1; // <-- this value is redundant with the value
+  //                    //     of the enumerator e1.
   //     };
   //
-  // These two enums are considered different if
-  // environment::use_enum_binary_only_equality() return false.
-  //
-  // So enumerators comparison should accomodate these conditions.
+  // These two enums are considered equal.
 
   for(const auto &e : l.get_enumerators())
-    if (!is_enumerator_present_in_enum(e, r))
+    if (!is_enumerator_present_in_enum(e, r)
+	&& !is_enumerator_value_redundant(e, r))
       {
 	result = false;
 	if (k)
@@ -17567,7 +17576,8 @@  equals(const enum_type_decl& l, const enum_type_decl& r, change_kind* k)
       }
 
   for(const auto &e : r.get_enumerators())
-    if (!is_enumerator_present_in_enum(e, l))
+    if (!is_enumerator_present_in_enum(e, l)
+	&& !is_enumerator_value_redundant(e, r))
       {
 	result = false;
 	if (k)
@@ -17734,8 +17744,7 @@  bool
 enum_type_decl::enumerator::operator==(const enumerator& other) const
 {
   bool names_equal = true;
-  if (!get_environment()->use_enum_binary_only_equality())
-    names_equal = (get_name() == other.get_name());
+  names_equal = (get_name() == other.get_name());
   return names_equal && (get_value() == other.get_value());
 }
 
diff --git a/tests/data/test-abidiff/test-enum0-report.txt b/tests/data/test-abidiff/test-enum0-report.txt
index e69de29b..e6aad7aa 100644
--- a/tests/data/test-abidiff/test-enum0-report.txt
+++ b/tests/data/test-abidiff/test-enum0-report.txt
@@ -0,0 +1,11 @@ 
+1 changed type:
+  'enum E' changed:
+    type size hasn't changed
+    1 enumerator deletion:
+      'E::e2' value '1'
+    1 enumerator insertion:
+      'E::e1' value '1'
+1 changed declaration:
+  'function void foo(E)' was changed to 'function void foo(E)':
+    parameter 1 of type 'enum E' has sub-type changes:
+      enum type 'enum E' changed, as reported earlier
diff --git a/tests/data/test-annotate/test-anonymous-members-0.o.abi b/tests/data/test-annotate/test-anonymous-members-0.o.abi
index 84513538..52eeee11 100644
--- a/tests/data/test-annotate/test-anonymous-members-0.o.abi
+++ b/tests/data/test-annotate/test-anonymous-members-0.o.abi
@@ -51,9 +51,25 @@ 
           <enumerator name='two' value='1'/>
         </enum-decl>
       </member-type>
+      <member-type access='public'>
+        <!-- enum S::__anonymous_enum__1 -->
+        <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='20' column='1' id='type-id-11'>
+          <underlying-type type-id='type-id-4'/>
+          <enumerator name='three' value='0'/>
+          <enumerator name='four' value='1'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <!-- enum S::__anonymous_enum__2 -->
+        <enum-decl name='__anonymous_enum__2' is-anonymous='yes' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='22' column='1' id='type-id-12'>
+          <underlying-type type-id='type-id-4'/>
+          <enumerator name='five' value='0'/>
+          <enumerator name='six' value='1'/>
+        </enum-decl>
+      </member-type>
       <member-type access='public'>
         <!-- union {int a; char b;} -->
-        <union-decl name='__anonymous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='24' column='1' id='type-id-11'>
+        <union-decl name='__anonymous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='24' column='1' id='type-id-13'>
           <data-member access='public'>
             <!-- int a -->
             <var-decl name='a' type-id='type-id-3' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='24' column='1'/>
@@ -66,7 +82,7 @@ 
       </member-type>
       <member-type access='public'>
         <!-- union {unsigned int c; double d;} -->
-        <union-decl name='__anonymous_union__1' size-in-bits='64' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='26' column='1' id='type-id-12'>
+        <union-decl name='__anonymous_union__1' size-in-bits='64' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='26' column='1' id='type-id-14'>
           <data-member access='public'>
             <!-- unsigned int c -->
             <var-decl name='c' type-id='type-id-5' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='26' column='1'/>
@@ -95,31 +111,31 @@ 
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
         <!-- S::__anonymous_enum__1 S::e2 -->
-        <var-decl name='e2' type-id='type-id-10' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='20' column='1'/>
+        <var-decl name='e2' type-id='type-id-11' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='20' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <!-- S::__anonymous_enum__2 S::e3 -->
-        <var-decl name='e3' type-id='type-id-10' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='22' column='1'/>
+        <var-decl name='e3' type-id='type-id-12' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='22' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
         <!-- union {int a; char b;} -->
-        <var-decl name='' type-id='type-id-11' visibility='default'/>
+        <var-decl name='' type-id='type-id-13' visibility='default'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <!-- union {unsigned int c; double d;} -->
-        <var-decl name='' type-id='type-id-12' visibility='default'/>
+        <var-decl name='' type-id='type-id-14' visibility='default'/>
       </data-member>
     </class-decl>
     <!-- S& -->
-    <reference-type-def kind='lvalue' type-id='type-id-6' size-in-bits='64' id='type-id-13'/>
+    <reference-type-def kind='lvalue' type-id='type-id-6' size-in-bits='64' id='type-id-15'/>
     <!-- void foo(S&) -->
     <function-decl name='foo' mangled-name='_Z3fooR1S' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='30' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Z3fooR1S'>
       <!-- parameter of type 'S&' -->
-      <parameter type-id='type-id-13'/>
+      <parameter type-id='type-id-15'/>
       <!-- void -->
-      <return type-id='type-id-14'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <!-- void -->
-    <type-decl name='void' id='type-id-14'/>
+    <type-decl name='void' id='type-id-16'/>
   </abi-instr>
 </abi-corpus>
diff --git a/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi b/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
index 48b115ab..33e19bc7 100644
--- a/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
+++ b/tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
@@ -3454,6 +3454,18 @@ 
           <enumerator name='NumberOfMinificationModes' value='6'/>
         </enum-decl>
       </member-type>
+      <member-type access='private'>
+        <!-- enum vtkTextureObject::__anonymous_enum__2 -->
+        <enum-decl name='__anonymous_enum__2' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkTextureObject.h' line='88' column='1' id='type-id-273'>
+          <underlying-type type-id='type-id-24'/>
+          <enumerator name='Native' value='0'/>
+          <enumerator name='Fixed16' value='1'/>
+          <enumerator name='Fixed24' value='2'/>
+          <enumerator name='Fixed32' value='3'/>
+          <enumerator name='Float32' value='4'/>
+          <enumerator name='NumberOfDepthFormats' value='5'/>
+        </enum-decl>
+      </member-type>
       <member-function access='private' static='yes'>
         <!-- bool vtkTextureObject::IsSupported() -->
         <function-decl name='IsSupported' mangled-name='_ZN16vtkTextureObject11IsSupportedEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkTextureObject.h' line='459' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -3550,7 +3562,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::char_traits<char> -->
-      <class-decl name='char_traits&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='238' column='1' id='type-id-273'>
+      <class-decl name='char_traits&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='238' column='1' id='type-id-274'>
         <member-type access='public'>
           <!-- typedef char std::char_traits<char>::char_type -->
           <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='239' column='1' id='type-id-157'/>
@@ -3594,7 +3606,7 @@ 
         </member-function>
       </class-decl>
       <!-- enum std::_Ios_Fmtflags -->
-      <enum-decl name='_Ios_Fmtflags' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='60' column='1' id='type-id-274'>
+      <enum-decl name='_Ios_Fmtflags' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='60' column='1' id='type-id-275'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_boolalpha' value='1'/>
         <enumerator name='_S_dec' value='2'/>
@@ -3617,7 +3629,7 @@ 
         <enumerator name='_S_ios_fmtflags_end' value='65536'/>
       </enum-decl>
       <!-- enum std::_Ios_Openmode -->
-      <enum-decl name='_Ios_Openmode' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='112' column='1' id='type-id-275'>
+      <enum-decl name='_Ios_Openmode' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='112' column='1' id='type-id-276'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_app' value='1'/>
         <enumerator name='_S_ate' value='2'/>
@@ -3628,7 +3640,7 @@ 
         <enumerator name='_S_ios_openmode_end' value='65536'/>
       </enum-decl>
       <!-- enum std::_Ios_Iostate -->
-      <enum-decl name='_Ios_Iostate' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='152' column='1' id='type-id-276'>
+      <enum-decl name='_Ios_Iostate' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='152' column='1' id='type-id-277'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_goodbit' value='0'/>
         <enumerator name='_S_badbit' value='1'/>
@@ -3637,7 +3649,7 @@ 
         <enumerator name='_S_ios_iostate_end' value='65536'/>
       </enum-decl>
       <!-- enum std::_Ios_Seekdir -->
-      <enum-decl name='_Ios_Seekdir' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='189' column='1' id='type-id-277'>
+      <enum-decl name='_Ios_Seekdir' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='189' column='1' id='type-id-278'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_beg' value='0'/>
         <enumerator name='_S_cur' value='1'/>
@@ -3645,11 +3657,11 @@ 
         <enumerator name='_S_ios_seekdir_end' value='65536'/>
       </enum-decl>
       <!-- typedef long int std::streamoff -->
-      <typedef-decl name='streamoff' type-id='type-id-20' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='88' column='1' id='type-id-278'/>
+      <typedef-decl name='streamoff' type-id='type-id-20' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='88' column='1' id='type-id-279'/>
       <!-- typedef ptrdiff_t std::streamsize -->
-      <typedef-decl name='streamsize' type-id='type-id-105' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='98' column='1' id='type-id-279'/>
+      <typedef-decl name='streamsize' type-id='type-id-105' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='98' column='1' id='type-id-280'/>
       <!-- struct std::_Destroy_aux<true> -->
-      <class-decl name='_Destroy_aux&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='106' column='1' id='type-id-280'>
+      <class-decl name='_Destroy_aux&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='106' column='1' id='type-id-281'>
         <member-function access='public' static='yes'>
           <!-- void std::_Destroy_aux<true>::__destroy<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='__destroy&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -3676,9 +3688,9 @@ 
           <!-- void std::_Destroy_aux<true>::__destroy<vtkPixelBufferObject**>(vtkPixelBufferObject**) -->
           <function-decl name='__destroy&lt;vtkPixelBufferObject**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'vtkPixelBufferObject**' -->
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <!-- parameter of type 'vtkPixelBufferObject**' -->
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -3696,7 +3708,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
-      <class-decl name='_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' size-in-bits='256' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='95' column='1' id='type-id-282'>
+      <class-decl name='_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' size-in-bits='256' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='95' column='1' id='type-id-283'>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- vtkPixelExtent* std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_M_cur -->
           <var-decl name='_M_cur' type-id='type-id-44' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='111' column='1'/>
@@ -3717,7 +3729,7 @@ 
           <!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_Deque_iterator(vtkPixelExtent*, vtkPixelExtent**) -->
           <function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelExtent*' -->
             <parameter type-id='type-id-44'/>
             <!-- parameter of type 'vtkPixelExtent**' -->
@@ -3730,7 +3742,7 @@ 
           <!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_Deque_iterator() -->
           <function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -3739,7 +3751,7 @@ 
           <!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_Deque_iterator(const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&) -->
           <function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&' -->
             <parameter type-id='type-id-135'/>
             <!-- void -->
@@ -3757,7 +3769,7 @@ 
           <!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_M_set_node(vtkPixelExtent**) -->
           <function-decl name='_M_set_node' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_E11_M_set_nodeEPPS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelExtent**' -->
             <parameter type-id='type-id-250'/>
             <!-- void -->
@@ -3768,7 +3780,7 @@ 
           <!-- const vtkPixelExtent& std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator*() -->
           <function-decl name='operator*' mangled-name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EdeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-284' is-artificial='yes'/>
+            <parameter type-id='type-id-285' is-artificial='yes'/>
             <!-- const vtkPixelExtent& -->
             <return type-id='type-id-45'/>
           </function-decl>
@@ -3777,31 +3789,31 @@ 
           <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator++() -->
           <function-decl name='operator++' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EppEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
-            <return type-id='type-id-285'/>
+            <return type-id='type-id-286'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator+(long int) -->
           <function-decl name='operator+' mangled-name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EplEl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-284' is-artificial='yes'/>
+            <parameter type-id='type-id-285' is-artificial='yes'/>
             <!-- parameter of type 'long int' -->
             <parameter type-id='type-id-20'/>
             <!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator+=(long int) -->
           <function-decl name='operator+=' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EpLEl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <!-- parameter of type 'long int' -->
             <parameter type-id='type-id-20'/>
             <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
-            <return type-id='type-id-285'/>
+            <return type-id='type-id-286'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -4004,7 +4016,7 @@ 
         </member-type>
         <member-type access='protected'>
           <!-- enum std::_Deque_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::__anonymous_enum__ -->
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='465' column='1' id='type-id-286'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='465' column='1' id='type-id-287'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='_S_initial_map_size' value='8'/>
           </enum-decl>
@@ -4352,11 +4364,11 @@ 
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::__false_type' -->
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-288'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -4369,9 +4381,9 @@ 
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -4388,7 +4400,7 @@ 
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::__false_type' -->
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-288'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -4445,7 +4457,7 @@ 
             <!-- implicit parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
             <parameter type-id='type-id-167' is-artificial='yes'/>
             <!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -4454,7 +4466,7 @@ 
             <!-- implicit parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
             <parameter type-id='type-id-167' is-artificial='yes'/>
             <!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -4556,9 +4568,9 @@ 
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- void -->
@@ -4573,11 +4585,11 @@ 
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::forward_iterator_tag' -->
-            <parameter type-id='type-id-288'/>
+            <parameter type-id='type-id-289'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -4631,14 +4643,14 @@ 
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::forward_iterator_tag' -->
-            <parameter type-id='type-id-288'/>
+            <parameter type-id='type-id-289'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::__uninitialized_fill<false> -->
-      <class-decl name='__uninitialized_fill&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='122' column='1' id='type-id-289'>
+      <class-decl name='__uninitialized_fill&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='122' column='1' id='type-id-290'>
         <member-function access='public' static='yes'>
           <!-- void std::__uninitialized_fill<false>::uninitialized_fill<vtkPixelExtent*, vtkPixelExtent>(vtkPixelExtent*, const vtkPixelExtent&) -->
           <function-decl name='uninitialized_fill&lt;vtkPixelExtent*, vtkPixelExtent&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -4654,10 +4666,10 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::_Resetiosflags -->
-      <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='49' column='1' id='type-id-290'>
+      <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='49' column='1' id='type-id-291'>
         <member-type access='public'>
           <!-- typedef std::_Ios_Fmtflags std::_Resetiosflags::fmtflags -->
-          <typedef-decl name='fmtflags' type-id='type-id-274' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='263' column='1' id='type-id-137'/>
+          <typedef-decl name='fmtflags' type-id='type-id-275' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='263' column='1' id='type-id-137'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- std::_Resetiosflags::fmtflags std::_Resetiosflags::_M_mask -->
@@ -4665,14 +4677,14 @@ 
         </data-member>
       </class-decl>
       <!-- struct std::_Setprecision -->
-      <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1' id='type-id-291'>
+      <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1' id='type-id-292'>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- int std::_Setprecision::_M_n -->
           <var-decl name='_M_n' type-id='type-id-17' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1'/>
         </data-member>
       </class-decl>
       <!-- struct std::_Setw -->
-      <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1' id='type-id-292'>
+      <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1' id='type-id-293'>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- int std::_Setw::_M_n -->
           <var-decl name='_M_n' type-id='type-id-17' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1'/>
@@ -4684,11 +4696,11 @@ 
       <class-decl name='__basic_file&lt;char&gt;' size-in-bits='128' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/x86_64-redhat-linux/bits/basic_file.h' line='53' column='1' id='type-id-139'>
         <member-type access='private'>
           <!-- typedef std::_Ios_Openmode std::__basic_file<char>::openmode -->
-          <typedef-decl name='openmode' type-id='type-id-275' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='369' column='1' id='type-id-142'/>
+          <typedef-decl name='openmode' type-id='type-id-276' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='369' column='1' id='type-id-142'/>
         </member-type>
         <member-type access='private'>
           <!-- typedef std::_Ios_Seekdir std::__basic_file<char>::seekdir -->
-          <typedef-decl name='seekdir' type-id='type-id-277' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='401' column='1' id='type-id-144'/>
+          <typedef-decl name='seekdir' type-id='type-id-278' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='401' column='1' id='type-id-144'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
           <!-- std::__c_file* std::__basic_file<char>::_M_cfile -->
@@ -4729,7 +4741,7 @@ 
       <class-decl name='basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-152'>
         <member-type access='public'>
           <!-- typedef std::_Ios_Iostate std::basic_ios<char, std::char_traits<char> >::iostate -->
-          <typedef-decl name='iostate' type-id='type-id-276' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='338' column='1' id='type-id-155'/>
+          <typedef-decl name='iostate' type-id='type-id-277' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='338' column='1' id='type-id-155'/>
         </member-type>
         <member-function access='public'>
           <!-- std::basic_ios<char, std::char_traits<char> >::iostate std::basic_ios<char, std::char_traits<char> >::rdstate() -->
@@ -4746,7 +4758,7 @@ 
             <!-- implicit parameter of type 'std::basic_ios<char, std::char_traits<char> >*' -->
             <parameter type-id='type-id-204' is-artificial='yes'/>
             <!-- parameter of type 'enum std::_Ios_Iostate' -->
-            <parameter type-id='type-id-276'/>
+            <parameter type-id='type-id-277'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -4802,7 +4814,7 @@ 
             <!-- implicit parameter of type 'std::basic_ostream<char, std::char_traits<char> >*' -->
             <parameter type-id='type-id-207' is-artificial='yes'/>
             <!-- parameter of type 'std::basic_ostream<char, std::char_traits<char> >& (std::basic_ostream<char, std::char_traits<char> >&)*' -->
-            <parameter type-id='type-id-293'/>
+            <parameter type-id='type-id-294'/>
             <!-- std::basic_ostream<char, std::char_traits<char> >& -->
             <return type-id='type-id-206'/>
           </function-decl>
@@ -4826,7 +4838,7 @@ 
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- artificial parameter of type 'void**' -->
-            <parameter type-id='type-id-294' is-artificial='yes'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -4850,7 +4862,7 @@ 
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- artificial parameter of type 'void**' -->
-            <parameter type-id='type-id-294' is-artificial='yes'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -5013,17 +5025,17 @@ 
         </data-member>
       </class-decl>
       <!-- class std::reverse_iterator<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> > -->
-      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-295'/>
+      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-296'/>
       <!-- class std::reverse_iterator<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> > -->
-      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-296'/>
+      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-297'/>
       <!-- std::_Ios_Iostate std::operator|(std::_Ios_Iostate, std::_Ios_Iostate) -->
       <function-decl name='operator|' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'enum std::_Ios_Iostate' -->
-        <parameter type-id='type-id-276'/>
+        <parameter type-id='type-id-277'/>
         <!-- parameter of type 'enum std::_Ios_Iostate' -->
-        <parameter type-id='type-id-276'/>
+        <parameter type-id='type-id-277'/>
         <!-- enum std::_Ios_Iostate -->
-        <return type-id='type-id-276'/>
+        <return type-id='type-id-277'/>
       </function-decl>
       <!-- const int& std::min<int>(const int&, const int&) -->
       <function-decl name='min&lt;int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -6626,7 +6638,7 @@ 
     <!-- int[6] -->
     <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='192' id='type-id-59'>
       <!-- <anonymous range>[6] -->
-      <subrange length='6' type-id='type-id-4' id='type-id-297'/>
+      <subrange length='6' type-id='type-id-4' id='type-id-298'/>
     </array-type-def>
     <!-- class vtkWeakPointer<vtkImageDataLIC2D> -->
     <class-decl name='vtkWeakPointer&lt;vtkImageDataLIC2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-61'>
@@ -6636,7 +6648,7 @@ 
         <!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer() -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -6645,7 +6657,7 @@ 
         <!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer(vtkImageDataLIC2D*) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageDataLIC2D*' -->
           <parameter type-id='type-id-65'/>
           <!-- void -->
@@ -6656,7 +6668,7 @@ 
         <!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer(const vtkWeakPointerBase&) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <!-- parameter of type 'const vtkWeakPointerBase&' -->
           <parameter type-id='type-id-36'/>
           <!-- void -->
@@ -6667,7 +6679,7 @@ 
         <!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer(vtkImageDataLIC2D*, const vtkWeakPointerBase::NoReference&) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageDataLIC2D*' -->
           <parameter type-id='type-id-65'/>
           <!-- parameter of type 'const vtkWeakPointerBase::NoReference&' -->
@@ -6680,7 +6692,7 @@ 
         <!-- vtkImageDataLIC2D* vtkWeakPointer<vtkImageDataLIC2D>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-299' is-artificial='yes'/>
+          <parameter type-id='type-id-300' is-artificial='yes'/>
           <!-- vtkImageDataLIC2D* -->
           <return type-id='type-id-65'/>
         </function-decl>
@@ -6689,7 +6701,7 @@ 
         <!-- vtkImageDataLIC2D* vtkWeakPointer<vtkImageDataLIC2D>::operator vtkImageDataLIC2D*() -->
         <function-decl name='operator vtkImageDataLIC2D*' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-299' is-artificial='yes'/>
+          <parameter type-id='type-id-300' is-artificial='yes'/>
           <!-- vtkImageDataLIC2D* -->
           <return type-id='type-id-65'/>
         </function-decl>
@@ -6698,7 +6710,7 @@ 
         <!-- vtkImageDataLIC2D* vtkWeakPointer<vtkImageDataLIC2D>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-299' is-artificial='yes'/>
+          <parameter type-id='type-id-300' is-artificial='yes'/>
           <!-- vtkImageDataLIC2D* -->
           <return type-id='type-id-65'/>
         </function-decl>
@@ -6707,64 +6719,64 @@ 
         <!-- vtkWeakPointer<vtkImageDataLIC2D>& vtkWeakPointer<vtkImageDataLIC2D>::operator=(vtkImageDataLIC2D*) -->
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI17vtkImageDataLIC2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageDataLIC2D*' -->
           <parameter type-id='type-id-65'/>
           <!-- vtkWeakPointer<vtkImageDataLIC2D>& -->
-          <return type-id='type-id-300'/>
+          <return type-id='type-id-301'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- const std::ctype<char> -->
-    <qualified-type-def type-id='type-id-301' const='yes' id='type-id-302'/>
+    <qualified-type-def type-id='type-id-302' const='yes' id='type-id-303'/>
     <!-- const std::ctype<char>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-302' size-in-bits='64' id='type-id-303'/>
+    <reference-type-def kind='lvalue' type-id='type-id-303' size-in-bits='64' id='type-id-304'/>
     <!-- const std::ctype<char>* -->
-    <pointer-type-def type-id='type-id-302' size-in-bits='64' id='type-id-304'/>
+    <pointer-type-def type-id='type-id-303' size-in-bits='64' id='type-id-305'/>
     <!-- const vtkImageDataLIC2DExtentTranslator -->
-    <qualified-type-def type-id='type-id-57' const='yes' id='type-id-305'/>
+    <qualified-type-def type-id='type-id-57' const='yes' id='type-id-306'/>
     <!-- const vtkImageDataLIC2DExtentTranslator& -->
-    <reference-type-def kind='lvalue' type-id='type-id-305' size-in-bits='64' id='type-id-63'/>
+    <reference-type-def kind='lvalue' type-id='type-id-306' size-in-bits='64' id='type-id-63'/>
     <!-- const vtkImageDataLIC2DExtentTranslator* -->
-    <pointer-type-def type-id='type-id-305' size-in-bits='64' id='type-id-66'/>
+    <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-66'/>
     <!-- const vtkWeakPointer<vtkImageDataLIC2D> -->
-    <qualified-type-def type-id='type-id-61' const='yes' id='type-id-306'/>
+    <qualified-type-def type-id='type-id-61' const='yes' id='type-id-307'/>
     <!-- const vtkWeakPointer<vtkImageDataLIC2D>* -->
-    <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-299'/>
+    <pointer-type-def type-id='type-id-307' size-in-bits='64' id='type-id-300'/>
     <!-- std::basic_ostream<char, std::char_traits<char> >& (std::basic_ostream<char, std::char_traits<char> >&)* -->
-    <pointer-type-def type-id='type-id-307' size-in-bits='64' id='type-id-293'/>
+    <pointer-type-def type-id='type-id-308' size-in-bits='64' id='type-id-294'/>
     <!-- vtkImageDataLIC2D& -->
-    <reference-type-def kind='lvalue' type-id='type-id-171' size-in-bits='64' id='type-id-308'/>
+    <reference-type-def kind='lvalue' type-id='type-id-171' size-in-bits='64' id='type-id-309'/>
     <!-- vtkWeakPointer<vtkImageDataLIC2D>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-61' size-in-bits='64' id='type-id-300'/>
+    <reference-type-def kind='lvalue' type-id='type-id-61' size-in-bits='64' id='type-id-301'/>
     <!-- vtkWeakPointer<vtkImageDataLIC2D>* -->
-    <pointer-type-def type-id='type-id-61' size-in-bits='64' id='type-id-298'/>
+    <pointer-type-def type-id='type-id-61' size-in-bits='64' id='type-id-299'/>
     <!-- namespace std -->
     <namespace-decl name='std'>
       <!-- class std::ctype<char> -->
-      <class-decl name='ctype&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-301'>
+      <class-decl name='ctype&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-302'>
         <member-type access='private'>
           <!-- typedef char std::ctype<char>::char_type -->
-          <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='679' column='1' id='type-id-309'/>
+          <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='679' column='1' id='type-id-310'/>
         </member-type>
         <member-function access='private'>
           <!-- std::ctype<char>::char_type std::ctype<char>::widen(char) -->
           <function-decl name='widen' mangled-name='_ZNKSt5ctypeIcE5widenEc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='865' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::ctype<char>*' -->
-            <parameter type-id='type-id-304' is-artificial='yes'/>
+            <parameter type-id='type-id-305' is-artificial='yes'/>
             <!-- parameter of type 'char' -->
             <parameter type-id='type-id-2'/>
             <!-- typedef std::ctype<char>::char_type -->
-            <return type-id='type-id-309'/>
+            <return type-id='type-id-310'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- const std::ctype<char>& std::__check_facet<std::ctype<char> >(const std::ctype<char>*) -->
       <function-decl name='__check_facet&lt;std::ctype&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_ios.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::ctype<char>*' -->
-        <parameter type-id='type-id-304'/>
+        <parameter type-id='type-id-305'/>
         <!-- const std::ctype<char>& -->
-        <return type-id='type-id-303'/>
+        <return type-id='type-id-304'/>
       </function-decl>
       <!-- std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&) -->
       <function-decl name='endl&lt;char, std::char_traits&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ostream' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -6782,7 +6794,7 @@ 
       </function-decl>
     </namespace-decl>
     <!-- std::basic_ostream<char, std::char_traits<char> >& (std::basic_ostream<char, std::char_traits<char> >&) -->
-    <function-type size-in-bits='64' id='type-id-307'>
+    <function-type size-in-bits='64' id='type-id-308'>
       <!-- parameter of type 'std::basic_ostream<char, std::char_traits<char> >&' -->
       <parameter type-id='type-id-206'/>
       <!-- std::basic_ostream<char, std::char_traits<char> >& -->
@@ -6791,62 +6803,62 @@ 
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- int[2] -->
-    <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='64' id='type-id-310'>
+    <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='64' id='type-id-311'>
       <!-- <anonymous range>[2] -->
-      <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+      <subrange length='2' type-id='type-id-4' id='type-id-312'/>
     </array-type-def>
     <!-- size_t[4] -->
-    <array-type-def dimensions='1' type-id='type-id-50' size-in-bits='256' id='type-id-312'>
+    <array-type-def dimensions='1' type-id='type-id-50' size-in-bits='256' id='type-id-313'>
       <!-- <anonymous range>[4] -->
       <subrange length='4' type-id='type-id-4' id='type-id-11'/>
     </array-type-def>
     <!-- unsigned int*[2] -->
-    <array-type-def dimensions='1' type-id='type-id-53' size-in-bits='128' id='type-id-313'>
+    <array-type-def dimensions='1' type-id='type-id-53' size-in-bits='128' id='type-id-314'>
       <!-- <anonymous range>[2] -->
-      <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+      <subrange length='2' type-id='type-id-4' id='type-id-312'/>
     </array-type-def>
     <!-- unsigned int[2] -->
-    <array-type-def dimensions='1' type-id='type-id-13' size-in-bits='64' id='type-id-314'>
+    <array-type-def dimensions='1' type-id='type-id-13' size-in-bits='64' id='type-id-315'>
       <!-- <anonymous range>[2] -->
-      <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+      <subrange length='2' type-id='type-id-4' id='type-id-312'/>
     </array-type-def>
     <!-- class vtkLICPingPongBufferManager -->
-    <class-decl name='vtkLICPingPongBufferManager' size-in-bits='896' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='107' column='1' id='type-id-315'>
+    <class-decl name='vtkLICPingPongBufferManager' size-in-bits='896' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='107' column='1' id='type-id-316'>
       <data-member access='private' layout-offset-in-bits='0'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::VectorTexture -->
-        <var-decl name='VectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='779' column='1'/>
+        <var-decl name='VectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='779' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='64'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::ImageVectorTexture -->
-        <var-decl name='ImageVectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='780' column='1'/>
+        <var-decl name='ImageVectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='780' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='128'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::MaskVectorTexture -->
-        <var-decl name='MaskVectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='781' column='1'/>
+        <var-decl name='MaskVectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='781' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='192'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::NoiseTexture -->
-        <var-decl name='NoiseTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='782' column='1'/>
+        <var-decl name='NoiseTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='782' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='256'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::EETexture -->
-        <var-decl name='EETexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='783' column='1'/>
+        <var-decl name='EETexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='783' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='320'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::LICTexture0 -->
-        <var-decl name='LICTexture0' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='784' column='1'/>
+        <var-decl name='LICTexture0' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='784' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='384'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::SeedTexture0 -->
-        <var-decl name='SeedTexture0' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='785' column='1'/>
+        <var-decl name='SeedTexture0' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='785' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='448'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::LICTexture1 -->
-        <var-decl name='LICTexture1' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='786' column='1'/>
+        <var-decl name='LICTexture1' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='786' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='512'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::SeedTexture1 -->
-        <var-decl name='SeedTexture1' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='787' column='1'/>
+        <var-decl name='SeedTexture1' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='787' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='576'>
         <!-- int vtkLICPingPongBufferManager::MaskVectorUnit -->
@@ -6858,31 +6870,31 @@ 
       </data-member>
       <data-member access='private' layout-offset-in-bits='640'>
         <!-- unsigned int vtkLICPingPongBufferManager::PingTextures[2] -->
-        <var-decl name='PingTextures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='791' column='1'/>
+        <var-decl name='PingTextures' type-id='type-id-315' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='791' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='704'>
         <!-- unsigned int vtkLICPingPongBufferManager::PongTextures[2] -->
-        <var-decl name='PongTextures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='792' column='1'/>
+        <var-decl name='PongTextures' type-id='type-id-315' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='792' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='768'>
         <!-- unsigned int* vtkLICPingPongBufferManager::Textures[2] -->
-        <var-decl name='Textures' type-id='type-id-313' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='793' column='1'/>
+        <var-decl name='Textures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='793' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <!-- vtkLICPingPongBufferManager::vtkLICPingPongBufferManager(vtkFrameBufferObject2*, unsigned int*, vtkTextureObject*, vtkTextureObject*, vtkTextureObject*, int, int) -->
         <function-decl name='vtkLICPingPongBufferManager' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-319'/>
           <!-- parameter of type 'unsigned int*' -->
           <parameter type-id='type-id-53'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'int' -->
@@ -6895,7 +6907,7 @@ 
         <!-- vtkLICPingPongBufferManager::~vtkLICPingPongBufferManager(int) -->
         <function-decl name='~vtkLICPingPongBufferManager' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- artificial parameter of type 'int' -->
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <!-- void -->
@@ -6906,33 +6918,33 @@ 
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateNoiseBuffer(vtkRenderWindow*, unsigned int*) -->
         <function-decl name='AllocateNoiseBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager19AllocateNoiseBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='601' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-35'/>
           <!-- parameter of type 'unsigned int*' -->
           <parameter type-id='type-id-53'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateVectorBuffer(vtkRenderWindow*, unsigned int*) -->
         <function-decl name='AllocateVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager20AllocateVectorBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='617' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-35'/>
           <!-- parameter of type 'unsigned int*' -->
           <parameter type-id='type-id-53'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- int vtkLICPingPongBufferManager::GetVectorTextureUnit() -->
         <function-decl name='GetVectorTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager20GetVectorTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -6941,7 +6953,7 @@ 
         <!-- void vtkLICPingPongBufferManager::DettachImageVectorBuffer() -->
         <function-decl name='DettachImageVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager24DettachImageVectorBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='475' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -6950,7 +6962,7 @@ 
         <!-- int vtkLICPingPongBufferManager::GetMaskVectorTextureUnit() -->
         <function-decl name='GetMaskVectorTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager24GetMaskVectorTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -6959,7 +6971,7 @@ 
         <!-- int vtkLICPingPongBufferManager::GetNoiseTextureUnit() -->
         <function-decl name='GetNoiseTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager19GetNoiseTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -6968,7 +6980,7 @@ 
         <!-- int vtkLICPingPongBufferManager::GetLICTextureUnit() -->
         <function-decl name='GetLICTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager17GetLICTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -6977,7 +6989,7 @@ 
         <!-- void vtkLICPingPongBufferManager::Swap() -->
         <function-decl name='Swap' mangled-name='_ZN27vtkLICPingPongBufferManager4SwapEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='185' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -6986,7 +6998,7 @@ 
         <!-- int vtkLICPingPongBufferManager::GetSeedTextureUnit() -->
         <function-decl name='GetSeedTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager18GetSeedTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -6995,16 +7007,16 @@ 
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::GetLastLICBuffer() -->
         <function-decl name='GetLastLICBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager16GetLastLICBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkLICPingPongBufferManager::DettachEEBuffer() -->
         <function-decl name='DettachEEBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager15DettachEEBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7013,7 +7025,7 @@ 
         <!-- void vtkLICPingPongBufferManager::RenderQuad(float*, vtkPixelExtent) -->
         <function-decl name='RenderQuad' mangled-name='_ZN27vtkLICPingPongBufferManager10RenderQuadEPf14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='673' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- parameter of type 'float*' -->
           <parameter type-id='type-id-55'/>
           <!-- parameter of type 'class vtkPixelExtent' -->
@@ -7026,7 +7038,7 @@ 
         <!-- void vtkLICPingPongBufferManager::AttachEEBuffer() -->
         <function-decl name='AttachEEBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager14AttachEEBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='494' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7035,7 +7047,7 @@ 
         <!-- void vtkLICPingPongBufferManager::AttachLICBuffers() -->
         <function-decl name='AttachLICBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager16AttachLICBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='383' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7044,7 +7056,7 @@ 
         <!-- void vtkLICPingPongBufferManager::DettachLICBuffers() -->
         <function-decl name='DettachLICBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager17DettachLICBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='423' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7053,7 +7065,7 @@ 
         <!-- void vtkLICPingPongBufferManager::AttachVectorTextures() -->
         <function-decl name='AttachVectorTextures' mangled-name='_ZN27vtkLICPingPongBufferManager20AttachVectorTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7062,7 +7074,7 @@ 
         <!-- void vtkLICPingPongBufferManager::DettachBuffers() -->
         <function-decl name='DettachBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager14DettachBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7071,7 +7083,7 @@ 
         <!-- void vtkLICPingPongBufferManager::AttachImageVectorBuffer() -->
         <function-decl name='AttachImageVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager23AttachImageVectorBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='452' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7080,20 +7092,20 @@ 
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateLICBuffer(vtkRenderWindow*, unsigned int*) -->
         <function-decl name='AllocateLICBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager17AllocateLICBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='585' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-35'/>
           <!-- parameter of type 'unsigned int*' -->
           <parameter type-id='type-id-53'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateBuffer(vtkRenderWindow*, unsigned int*, int, int, float*) -->
         <function-decl name='AllocateBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager14AllocateBufferEP15vtkRenderWindowPjiiPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-35'/>
           <!-- parameter of type 'unsigned int*' -->
@@ -7105,16 +7117,16 @@ 
           <!-- parameter of type 'float*' -->
           <parameter type-id='type-id-55'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkLICPingPongBufferManager::ClearBuffers(vtkFrameBufferObject2*, const vtkPixelExtent&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, int) -->
         <function-decl name='ClearBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager12ClearBuffersEP21vtkFrameBufferObject2RK14vtkPixelExtentRKSt5dequeIS2_SaIS2_EEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-319'/>
           <!-- parameter of type 'const vtkPixelExtent&' -->
           <parameter type-id='type-id-45'/>
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -7129,7 +7141,7 @@ 
         <!-- void vtkLICPingPongBufferManager::AttachNoiseTexture(int) -->
         <function-decl name='AttachNoiseTexture' mangled-name='_ZN27vtkLICPingPongBufferManager18AttachNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <!-- artificial parameter of type 'int' -->
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <!-- void -->
@@ -7138,12 +7150,12 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkPainterCommunicator -->
-    <class-decl name='vtkPainterCommunicator' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='30' column='1' id='type-id-319'>
+    <class-decl name='vtkPainterCommunicator' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='30' column='1' id='type-id-320'>
       <member-function access='private' constructor='yes'>
         <!-- vtkPainterCommunicator::vtkPainterCommunicator() -->
         <function-decl name='vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7152,9 +7164,9 @@ 
         <!-- vtkPainterCommunicator::vtkPainterCommunicator(const vtkPainterCommunicator&) -->
         <function-decl name='vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- parameter of type 'const vtkPainterCommunicator&' -->
-          <parameter type-id='type-id-321'/>
+          <parameter type-id='type-id-322'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7163,7 +7175,7 @@ 
         <!-- vtkPainterCommunicator::~vtkPainterCommunicator(int) -->
         <function-decl name='~vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- artificial parameter of type 'int' -->
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <!-- void -->
@@ -7174,9 +7186,9 @@ 
         <!-- void vtkPainterCommunicator::Copy(const vtkPainterCommunicator*, bool) -->
         <function-decl name='Copy' mangled-name='_ZN22vtkPainterCommunicator4CopyEPKS_b' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- parameter of type 'const vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-322'/>
+          <parameter type-id='type-id-323'/>
           <!-- parameter of type 'bool' -->
           <parameter type-id='type-id-1'/>
           <!-- void -->
@@ -7187,9 +7199,9 @@ 
         <!-- void vtkPainterCommunicator::Duplicate(const vtkPainterCommunicator*) -->
         <function-decl name='Duplicate' mangled-name='_ZN22vtkPainterCommunicator9DuplicateEPKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- parameter of type 'const vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-322'/>
+          <parameter type-id='type-id-323'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -7198,7 +7210,7 @@ 
         <!-- int vtkPainterCommunicator::GetRank() -->
         <function-decl name='GetRank' mangled-name='_ZN22vtkPainterCommunicator7GetRankEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -7207,7 +7219,7 @@ 
         <!-- int vtkPainterCommunicator::GetSize() -->
         <function-decl name='GetSize' mangled-name='_ZN22vtkPainterCommunicator7GetSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -7216,7 +7228,7 @@ 
         <!-- bool vtkPainterCommunicator::GetIsNull() -->
         <function-decl name='GetIsNull' mangled-name='_ZN22vtkPainterCommunicator9GetIsNullEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -7225,7 +7237,7 @@ 
         <!-- int vtkPainterCommunicator::GetWorldRank() -->
         <function-decl name='GetWorldRank' mangled-name='_ZN22vtkPainterCommunicator12GetWorldRankEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -7234,7 +7246,7 @@ 
         <!-- int vtkPainterCommunicator::GetWorldSize() -->
         <function-decl name='GetWorldSize' mangled-name='_ZN22vtkPainterCommunicator12GetWorldSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -7243,7 +7255,7 @@ 
         <!-- bool vtkPainterCommunicator::GetMPIInitialized() -->
         <function-decl name='GetMPIInitialized' mangled-name='_ZN22vtkPainterCommunicator17GetMPIInitializedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -7252,187 +7264,187 @@ 
         <!-- bool vtkPainterCommunicator::GetMPIFinalized() -->
         <function-decl name='GetMPIFinalized' mangled-name='_ZN22vtkPainterCommunicator15GetMPIFinalizedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- __gnu_cxx::new_allocator<char>* -->
-    <pointer-type-def type-id='type-id-323' size-in-bits='64' id='type-id-324'/>
+    <pointer-type-def type-id='type-id-324' size-in-bits='64' id='type-id-325'/>
     <!-- __gnu_cxx::new_allocator<float>* -->
-    <pointer-type-def type-id='type-id-325' size-in-bits='64' id='type-id-326'/>
+    <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-327'/>
     <!-- __gnu_cxx::new_allocator<vtkPixelBufferObject*>* -->
-    <pointer-type-def type-id='type-id-327' size-in-bits='64' id='type-id-328'/>
+    <pointer-type-def type-id='type-id-328' size-in-bits='64' id='type-id-329'/>
     <!-- char& -->
-    <reference-type-def kind='lvalue' type-id='type-id-2' size-in-bits='64' id='type-id-329'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2' size-in-bits='64' id='type-id-330'/>
     <!-- char* const -->
-    <qualified-type-def type-id='type-id-86' const='yes' id='type-id-330'/>
+    <qualified-type-def type-id='type-id-86' const='yes' id='type-id-331'/>
     <!-- char* const& -->
-    <reference-type-def kind='lvalue' type-id='type-id-330' size-in-bits='64' id='type-id-331'/>
+    <reference-type-def kind='lvalue' type-id='type-id-331' size-in-bits='64' id='type-id-332'/>
     <!-- const __gnu_cxx::new_allocator<char> -->
-    <qualified-type-def type-id='type-id-323' const='yes' id='type-id-332'/>
+    <qualified-type-def type-id='type-id-324' const='yes' id='type-id-333'/>
     <!-- const __gnu_cxx::new_allocator<char>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-332' size-in-bits='64' id='type-id-333'/>
+    <reference-type-def kind='lvalue' type-id='type-id-333' size-in-bits='64' id='type-id-334'/>
     <!-- const __gnu_cxx::new_allocator<char>* -->
-    <pointer-type-def type-id='type-id-332' size-in-bits='64' id='type-id-334'/>
+    <pointer-type-def type-id='type-id-333' size-in-bits='64' id='type-id-335'/>
     <!-- const __gnu_cxx::new_allocator<float> -->
-    <qualified-type-def type-id='type-id-325' const='yes' id='type-id-335'/>
+    <qualified-type-def type-id='type-id-326' const='yes' id='type-id-336'/>
     <!-- const __gnu_cxx::new_allocator<float>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-335' size-in-bits='64' id='type-id-336'/>
+    <reference-type-def kind='lvalue' type-id='type-id-336' size-in-bits='64' id='type-id-337'/>
     <!-- const __gnu_cxx::new_allocator<float>* -->
-    <pointer-type-def type-id='type-id-335' size-in-bits='64' id='type-id-337'/>
+    <pointer-type-def type-id='type-id-336' size-in-bits='64' id='type-id-338'/>
     <!-- const __gnu_cxx::new_allocator<vtkPixelBufferObject*> -->
-    <qualified-type-def type-id='type-id-327' const='yes' id='type-id-338'/>
+    <qualified-type-def type-id='type-id-328' const='yes' id='type-id-339'/>
     <!-- const __gnu_cxx::new_allocator<vtkPixelBufferObject*>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-338' size-in-bits='64' id='type-id-339'/>
+    <reference-type-def kind='lvalue' type-id='type-id-339' size-in-bits='64' id='type-id-340'/>
     <!-- const __gnu_cxx::new_allocator<vtkPixelBufferObject*>* -->
-    <pointer-type-def type-id='type-id-338' size-in-bits='64' id='type-id-340'/>
+    <pointer-type-def type-id='type-id-339' size-in-bits='64' id='type-id-341'/>
     <!-- const char& -->
-    <reference-type-def kind='lvalue' type-id='type-id-121' size-in-bits='64' id='type-id-341'/>
+    <reference-type-def kind='lvalue' type-id='type-id-121' size-in-bits='64' id='type-id-342'/>
     <!-- const float -->
-    <qualified-type-def type-id='type-id-16' const='yes' id='type-id-342'/>
+    <qualified-type-def type-id='type-id-16' const='yes' id='type-id-343'/>
     <!-- const float& -->
-    <reference-type-def kind='lvalue' type-id='type-id-342' size-in-bits='64' id='type-id-343'/>
+    <reference-type-def kind='lvalue' type-id='type-id-343' size-in-bits='64' id='type-id-344'/>
     <!-- const float* -->
-    <pointer-type-def type-id='type-id-342' size-in-bits='64' id='type-id-344'/>
+    <pointer-type-def type-id='type-id-343' size-in-bits='64' id='type-id-345'/>
     <!-- const std::_Vector_base<float, std::allocator<float> > -->
-    <qualified-type-def type-id='type-id-345' const='yes' id='type-id-346'/>
+    <qualified-type-def type-id='type-id-346' const='yes' id='type-id-347'/>
     <!-- const std::_Vector_base<float, std::allocator<float> >* -->
-    <pointer-type-def type-id='type-id-346' size-in-bits='64' id='type-id-347'/>
+    <pointer-type-def type-id='type-id-347' size-in-bits='64' id='type-id-348'/>
     <!-- const std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
-    <qualified-type-def type-id='type-id-348' const='yes' id='type-id-349'/>
+    <qualified-type-def type-id='type-id-349' const='yes' id='type-id-350'/>
     <!-- const std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
-    <pointer-type-def type-id='type-id-349' size-in-bits='64' id='type-id-350'/>
+    <pointer-type-def type-id='type-id-350' size-in-bits='64' id='type-id-351'/>
     <!-- const std::allocator<char> -->
-    <qualified-type-def type-id='type-id-351' const='yes' id='type-id-352'/>
+    <qualified-type-def type-id='type-id-352' const='yes' id='type-id-353'/>
     <!-- const std::allocator<char>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-352' size-in-bits='64' id='type-id-353'/>
+    <reference-type-def kind='lvalue' type-id='type-id-353' size-in-bits='64' id='type-id-354'/>
     <!-- const std::allocator<float> -->
-    <qualified-type-def type-id='type-id-354' const='yes' id='type-id-355'/>
+    <qualified-type-def type-id='type-id-355' const='yes' id='type-id-356'/>
     <!-- const std::allocator<float>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-355' size-in-bits='64' id='type-id-356'/>
+    <reference-type-def kind='lvalue' type-id='type-id-356' size-in-bits='64' id='type-id-357'/>
     <!-- const std::allocator<vtkPixelBufferObject*> -->
-    <qualified-type-def type-id='type-id-357' const='yes' id='type-id-358'/>
+    <qualified-type-def type-id='type-id-358' const='yes' id='type-id-359'/>
     <!-- const std::allocator<vtkPixelBufferObject*>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-358' size-in-bits='64' id='type-id-359'/>
+    <reference-type-def kind='lvalue' type-id='type-id-359' size-in-bits='64' id='type-id-360'/>
     <!-- const std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> > -->
-    <qualified-type-def type-id='type-id-360' const='yes' id='type-id-361'/>
+    <qualified-type-def type-id='type-id-361' const='yes' id='type-id-362'/>
     <!-- const std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >* -->
-    <pointer-type-def type-id='type-id-361' size-in-bits='64' id='type-id-362'/>
+    <pointer-type-def type-id='type-id-362' size-in-bits='64' id='type-id-363'/>
     <!-- const std::basic_streambuf<char, std::char_traits<char> > -->
-    <qualified-type-def type-id='type-id-363' const='yes' id='type-id-364'/>
+    <qualified-type-def type-id='type-id-364' const='yes' id='type-id-365'/>
     <!-- const std::basic_streambuf<char, std::char_traits<char> >* -->
-    <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-365'/>
+    <pointer-type-def type-id='type-id-365' size-in-bits='64' id='type-id-366'/>
     <!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> > -->
-    <qualified-type-def type-id='type-id-366' const='yes' id='type-id-367'/>
+    <qualified-type-def type-id='type-id-367' const='yes' id='type-id-368'/>
     <!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-367' size-in-bits='64' id='type-id-368'/>
+    <reference-type-def kind='lvalue' type-id='type-id-368' size-in-bits='64' id='type-id-369'/>
     <!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >* -->
-    <pointer-type-def type-id='type-id-367' size-in-bits='64' id='type-id-369'/>
+    <pointer-type-def type-id='type-id-368' size-in-bits='64' id='type-id-370'/>
     <!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep -->
-    <qualified-type-def type-id='type-id-370' const='yes' id='type-id-371'/>
+    <qualified-type-def type-id='type-id-371' const='yes' id='type-id-372'/>
     <!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* -->
-    <pointer-type-def type-id='type-id-371' size-in-bits='64' id='type-id-372'/>
+    <pointer-type-def type-id='type-id-372' size-in-bits='64' id='type-id-373'/>
     <!-- const std::vector<float, std::allocator<float> > -->
-    <qualified-type-def type-id='type-id-373' const='yes' id='type-id-374'/>
+    <qualified-type-def type-id='type-id-374' const='yes' id='type-id-375'/>
     <!-- const std::vector<float, std::allocator<float> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-375'/>
+    <reference-type-def kind='lvalue' type-id='type-id-375' size-in-bits='64' id='type-id-376'/>
     <!-- const std::vector<float, std::allocator<float> >* -->
-    <pointer-type-def type-id='type-id-374' size-in-bits='64' id='type-id-376'/>
+    <pointer-type-def type-id='type-id-375' size-in-bits='64' id='type-id-377'/>
     <!-- const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
-    <qualified-type-def type-id='type-id-377' const='yes' id='type-id-378'/>
+    <qualified-type-def type-id='type-id-378' const='yes' id='type-id-379'/>
     <!-- const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-378' size-in-bits='64' id='type-id-379'/>
+    <reference-type-def kind='lvalue' type-id='type-id-379' size-in-bits='64' id='type-id-380'/>
     <!-- const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
-    <pointer-type-def type-id='type-id-378' size-in-bits='64' id='type-id-380'/>
+    <pointer-type-def type-id='type-id-379' size-in-bits='64' id='type-id-381'/>
     <!-- const vtkLineIntegralConvolution2D -->
-    <qualified-type-def type-id='type-id-381' const='yes' id='type-id-382'/>
+    <qualified-type-def type-id='type-id-382' const='yes' id='type-id-383'/>
     <!-- const vtkLineIntegralConvolution2D& -->
-    <reference-type-def kind='lvalue' type-id='type-id-382' size-in-bits='64' id='type-id-383'/>
+    <reference-type-def kind='lvalue' type-id='type-id-383' size-in-bits='64' id='type-id-384'/>
     <!-- const vtkLineIntegralConvolution2D* -->
-    <pointer-type-def type-id='type-id-382' size-in-bits='64' id='type-id-384'/>
+    <pointer-type-def type-id='type-id-383' size-in-bits='64' id='type-id-385'/>
     <!-- const vtkPainterCommunicator -->
-    <qualified-type-def type-id='type-id-319' const='yes' id='type-id-385'/>
+    <qualified-type-def type-id='type-id-320' const='yes' id='type-id-386'/>
     <!-- const vtkPainterCommunicator& -->
-    <reference-type-def kind='lvalue' type-id='type-id-385' size-in-bits='64' id='type-id-321'/>
+    <reference-type-def kind='lvalue' type-id='type-id-386' size-in-bits='64' id='type-id-322'/>
     <!-- const vtkPainterCommunicator* -->
-    <pointer-type-def type-id='type-id-385' size-in-bits='64' id='type-id-322'/>
+    <pointer-type-def type-id='type-id-386' size-in-bits='64' id='type-id-323'/>
     <!-- float& -->
-    <reference-type-def kind='lvalue' type-id='type-id-16' size-in-bits='64' id='type-id-386'/>
+    <reference-type-def kind='lvalue' type-id='type-id-16' size-in-bits='64' id='type-id-387'/>
     <!-- std::_Vector_base<float, std::allocator<float> >* -->
-    <pointer-type-def type-id='type-id-345' size-in-bits='64' id='type-id-387'/>
+    <pointer-type-def type-id='type-id-346' size-in-bits='64' id='type-id-388'/>
     <!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl* -->
-    <pointer-type-def type-id='type-id-388' size-in-bits='64' id='type-id-389'/>
+    <pointer-type-def type-id='type-id-389' size-in-bits='64' id='type-id-390'/>
     <!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
-    <pointer-type-def type-id='type-id-348' size-in-bits='64' id='type-id-390'/>
+    <pointer-type-def type-id='type-id-349' size-in-bits='64' id='type-id-391'/>
     <!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl* -->
-    <pointer-type-def type-id='type-id-391' size-in-bits='64' id='type-id-392'/>
+    <pointer-type-def type-id='type-id-392' size-in-bits='64' id='type-id-393'/>
     <!-- std::allocator<char>* -->
-    <pointer-type-def type-id='type-id-351' size-in-bits='64' id='type-id-393'/>
+    <pointer-type-def type-id='type-id-352' size-in-bits='64' id='type-id-394'/>
     <!-- std::allocator<float>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-354' size-in-bits='64' id='type-id-394'/>
+    <reference-type-def kind='lvalue' type-id='type-id-355' size-in-bits='64' id='type-id-395'/>
     <!-- std::allocator<float>* -->
-    <pointer-type-def type-id='type-id-354' size-in-bits='64' id='type-id-395'/>
+    <pointer-type-def type-id='type-id-355' size-in-bits='64' id='type-id-396'/>
     <!-- std::allocator<vtkPixelBufferObject*>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-357' size-in-bits='64' id='type-id-396'/>
+    <reference-type-def kind='lvalue' type-id='type-id-358' size-in-bits='64' id='type-id-397'/>
     <!-- std::allocator<vtkPixelBufferObject*>* -->
-    <pointer-type-def type-id='type-id-357' size-in-bits='64' id='type-id-397'/>
+    <pointer-type-def type-id='type-id-358' size-in-bits='64' id='type-id-398'/>
     <!-- std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >* -->
-    <pointer-type-def type-id='type-id-360' size-in-bits='64' id='type-id-398'/>
+    <pointer-type-def type-id='type-id-361' size-in-bits='64' id='type-id-399'/>
     <!-- std::basic_streambuf<char, std::char_traits<char> >* -->
-    <pointer-type-def type-id='type-id-363' size-in-bits='64' id='type-id-399'/>
+    <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-400'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-366' size-in-bits='64' id='type-id-400'/>
+    <reference-type-def kind='lvalue' type-id='type-id-367' size-in-bits='64' id='type-id-401'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >* -->
-    <pointer-type-def type-id='type-id-366' size-in-bits='64' id='type-id-401'/>
+    <pointer-type-def type-id='type-id-367' size-in-bits='64' id='type-id-402'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider* -->
-    <pointer-type-def type-id='type-id-402' size-in-bits='64' id='type-id-403'/>
+    <pointer-type-def type-id='type-id-403' size-in-bits='64' id='type-id-404'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& -->
-    <reference-type-def kind='lvalue' type-id='type-id-370' size-in-bits='64' id='type-id-404'/>
+    <reference-type-def kind='lvalue' type-id='type-id-371' size-in-bits='64' id='type-id-405'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* -->
-    <pointer-type-def type-id='type-id-370' size-in-bits='64' id='type-id-405'/>
+    <pointer-type-def type-id='type-id-371' size-in-bits='64' id='type-id-406'/>
     <!-- std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >* -->
-    <pointer-type-def type-id='type-id-406' size-in-bits='64' id='type-id-407'/>
+    <pointer-type-def type-id='type-id-407' size-in-bits='64' id='type-id-408'/>
     <!-- std::vector<float, std::allocator<float> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-373' size-in-bits='64' id='type-id-408'/>
+    <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-409'/>
     <!-- std::vector<float, std::allocator<float> >* -->
-    <pointer-type-def type-id='type-id-373' size-in-bits='64' id='type-id-409'/>
+    <pointer-type-def type-id='type-id-374' size-in-bits='64' id='type-id-410'/>
     <!-- std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-377' size-in-bits='64' id='type-id-410'/>
+    <reference-type-def kind='lvalue' type-id='type-id-378' size-in-bits='64' id='type-id-411'/>
     <!-- std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
-    <pointer-type-def type-id='type-id-377' size-in-bits='64' id='type-id-411'/>
+    <pointer-type-def type-id='type-id-378' size-in-bits='64' id='type-id-412'/>
     <!-- void** -->
-    <pointer-type-def type-id='type-id-14' size-in-bits='64' id='type-id-294'/>
+    <pointer-type-def type-id='type-id-14' size-in-bits='64' id='type-id-295'/>
     <!-- vtkFrameBufferObject2* -->
-    <pointer-type-def type-id='type-id-412' size-in-bits='64' id='type-id-318'/>
+    <pointer-type-def type-id='type-id-413' size-in-bits='64' id='type-id-319'/>
     <!-- vtkLICPingPongBufferManager* -->
-    <pointer-type-def type-id='type-id-315' size-in-bits='64' id='type-id-317'/>
+    <pointer-type-def type-id='type-id-316' size-in-bits='64' id='type-id-318'/>
     <!-- vtkLineIntegralConvolution2D* -->
-    <pointer-type-def type-id='type-id-381' size-in-bits='64' id='type-id-413'/>
+    <pointer-type-def type-id='type-id-382' size-in-bits='64' id='type-id-414'/>
     <!-- vtkPainterCommunicator& -->
-    <reference-type-def kind='lvalue' type-id='type-id-319' size-in-bits='64' id='type-id-414'/>
+    <reference-type-def kind='lvalue' type-id='type-id-320' size-in-bits='64' id='type-id-415'/>
     <!-- vtkPainterCommunicator* -->
-    <pointer-type-def type-id='type-id-319' size-in-bits='64' id='type-id-320'/>
+    <pointer-type-def type-id='type-id-320' size-in-bits='64' id='type-id-321'/>
     <!-- vtkPixelBufferObject* const -->
-    <qualified-type-def type-id='type-id-245' const='yes' id='type-id-415'/>
+    <qualified-type-def type-id='type-id-245' const='yes' id='type-id-416'/>
     <!-- vtkPixelBufferObject* const& -->
-    <reference-type-def kind='lvalue' type-id='type-id-415' size-in-bits='64' id='type-id-416'/>
+    <reference-type-def kind='lvalue' type-id='type-id-416' size-in-bits='64' id='type-id-417'/>
     <!-- vtkPixelBufferObject* const* -->
-    <pointer-type-def type-id='type-id-415' size-in-bits='64' id='type-id-417'/>
+    <pointer-type-def type-id='type-id-416' size-in-bits='64' id='type-id-418'/>
     <!-- vtkPixelBufferObject*& -->
-    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-418'/>
+    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-419'/>
     <!-- vtkPixelBufferObject** -->
-    <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-281'/>
+    <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-282'/>
     <!-- vtkTextureObject* -->
-    <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-316'/>
+    <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-317'/>
     <!-- class vtkFrameBufferObject2 -->
-    <class-decl name='vtkFrameBufferObject2' visibility='default' is-declaration-only='yes' id='type-id-412'>
+    <class-decl name='vtkFrameBufferObject2' visibility='default' is-declaration-only='yes' id='type-id-413'>
       <member-function access='private'>
         <!-- void vtkFrameBufferObject2::RemoveTexColorAttachment(unsigned int, unsigned int) -->
         <function-decl name='RemoveTexColorAttachment' mangled-name='_ZN21vtkFrameBufferObject224RemoveTexColorAttachmentEjj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject2.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkFrameBufferObject2*' -->
-          <parameter type-id='type-id-318' is-artificial='yes'/>
+          <parameter type-id='type-id-319' is-artificial='yes'/>
           <!-- parameter of type 'unsigned int' -->
           <parameter type-id='type-id-13'/>
           <!-- parameter of type 'unsigned int' -->
@@ -7445,7 +7457,7 @@ 
         <!-- void vtkFrameBufferObject2::RemoveRenDepthAttachment(unsigned int) -->
         <function-decl name='RemoveRenDepthAttachment' mangled-name='_ZN21vtkFrameBufferObject224RemoveRenDepthAttachmentEj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject2.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkFrameBufferObject2*' -->
-          <parameter type-id='type-id-318' is-artificial='yes'/>
+          <parameter type-id='type-id-319' is-artificial='yes'/>
           <!-- parameter of type 'unsigned int' -->
           <parameter type-id='type-id-13'/>
           <!-- void -->
@@ -7456,14 +7468,14 @@ 
     <!-- namespace std -->
     <namespace-decl name='std'>
       <!-- class std::allocator<float> -->
-      <class-decl name='allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-354'>
+      <class-decl name='allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-355'>
         <!-- class __gnu_cxx::new_allocator<float> -->
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-325'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-326'/>
         <member-function access='private'>
           <!-- void std::allocator<float>::allocator() -->
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<float>*' -->
-            <parameter type-id='type-id-395' is-artificial='yes'/>
+            <parameter type-id='type-id-396' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7472,9 +7484,9 @@ 
           <!-- void std::allocator<float>::allocator(const std::allocator<float>&) -->
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<float>*' -->
-            <parameter type-id='type-id-395' is-artificial='yes'/>
+            <parameter type-id='type-id-396' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<float>&' -->
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-357'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7483,7 +7495,7 @@ 
           <!-- std::allocator<float>::~allocator(int) -->
           <function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<float>*' -->
-            <parameter type-id='type-id-395' is-artificial='yes'/>
+            <parameter type-id='type-id-396' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -7492,14 +7504,14 @@ 
         </member-function>
       </class-decl>
       <!-- class std::allocator<vtkPixelBufferObject*> -->
-      <class-decl name='allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-357'>
+      <class-decl name='allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-358'>
         <!-- class __gnu_cxx::new_allocator<vtkPixelBufferObject*> -->
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-327'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-328'/>
         <member-function access='private'>
           <!-- void std::allocator<vtkPixelBufferObject*>::allocator() -->
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-397' is-artificial='yes'/>
+            <parameter type-id='type-id-398' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7508,9 +7520,9 @@ 
           <!-- void std::allocator<vtkPixelBufferObject*>::allocator(const std::allocator<vtkPixelBufferObject*>&) -->
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-397' is-artificial='yes'/>
+            <parameter type-id='type-id-398' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-360'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7519,7 +7531,7 @@ 
           <!-- std::allocator<vtkPixelBufferObject*>::~allocator(int) -->
           <function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-397' is-artificial='yes'/>
+            <parameter type-id='type-id-398' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -7528,9 +7540,9 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__false_type -->
-      <class-decl name='__false_type' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/cpp_type_traits.h' line='79' column='1' id='type-id-287'/>
+      <class-decl name='__false_type' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/cpp_type_traits.h' line='79' column='1' id='type-id-288'/>
       <!-- struct std::__niter_base<float*, false> -->
-      <class-decl name='__niter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-419'>
+      <class-decl name='__niter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-420'>
         <member-function access='public' static='yes'>
           <!-- float* std::__niter_base<float*, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7542,19 +7554,19 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__niter_base<vtkPixelBufferObject**, false> -->
-      <class-decl name='__niter_base&lt;vtkPixelBufferObject**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-420'>
+      <class-decl name='__niter_base&lt;vtkPixelBufferObject**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-421'>
         <member-function access='public' static='yes'>
           <!-- vtkPixelBufferObject** std::__niter_base<vtkPixelBufferObject**, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPP20vtkPixelBufferObjectLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'vtkPixelBufferObject**' -->
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <!-- vtkPixelBufferObject** -->
-            <return type-id='type-id-281'/>
+            <return type-id='type-id-282'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::__niter_base<vtkPixelExtent**, false> -->
-      <class-decl name='__niter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-421'>
+      <class-decl name='__niter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-422'>
         <member-function access='public' static='yes'>
           <!-- vtkPixelExtent** std::__niter_base<vtkPixelExtent**, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPP14vtkPixelExtentLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7566,7 +7578,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__miter_base<vtkPixelExtent**, false> -->
-      <class-decl name='__miter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-422'>
+      <class-decl name='__miter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-423'>
         <member-function access='public' static='yes'>
           <!-- vtkPixelExtent** std::__miter_base<vtkPixelExtent**, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPP14vtkPixelExtentLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7578,7 +7590,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__copy_move<false, true, std::random_access_iterator_tag> -->
-      <class-decl name='__copy_move&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='307' column='1' id='type-id-423'>
+      <class-decl name='__copy_move&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='307' column='1' id='type-id-424'>
         <member-function access='public' static='yes'>
           <!-- vtkPixelExtent** std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<vtkPixelExtent*>(vtkPixelExtent* const*, vtkPixelExtent**) -->
           <function-decl name='__copy_m&lt;vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7596,9 +7608,9 @@ 
           <!-- float* std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<float>(const float*, float*) -->
           <function-decl name='__copy_m&lt;float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'const float*' -->
-            <parameter type-id='type-id-344'/>
+            <parameter type-id='type-id-345'/>
             <!-- parameter of type 'const float*' -->
-            <parameter type-id='type-id-344'/>
+            <parameter type-id='type-id-345'/>
             <!-- parameter of type 'float*' -->
             <parameter type-id='type-id-55'/>
             <!-- float* -->
@@ -7607,7 +7619,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__copy_move_backward<false, true, std::random_access_iterator_tag> -->
-      <class-decl name='__copy_move_backward&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='511' column='1' id='type-id-424'>
+      <class-decl name='__copy_move_backward&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='511' column='1' id='type-id-425'>
         <member-function access='public' static='yes'>
           <!-- vtkPixelExtent** std::__copy_move_backward<false, true, std::random_access_iterator_tag>::__copy_move_b<vtkPixelExtent*>(vtkPixelExtent* const*, vtkPixelExtent**) -->
           <function-decl name='__copy_move_b&lt;vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='572' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7625,9 +7637,9 @@ 
           <!-- float* std::__copy_move_backward<false, true, std::random_access_iterator_tag>::__copy_move_b<float>(const float*, float*) -->
           <function-decl name='__copy_move_b&lt;float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='572' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'const float*' -->
-            <parameter type-id='type-id-344'/>
+            <parameter type-id='type-id-345'/>
             <!-- parameter of type 'const float*' -->
-            <parameter type-id='type-id-344'/>
+            <parameter type-id='type-id-345'/>
             <!-- parameter of type 'float*' -->
             <parameter type-id='type-id-55'/>
             <!-- float* -->
@@ -7636,33 +7648,33 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::input_iterator_tag -->
-      <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='79' column='1' id='type-id-425'/>
+      <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='79' column='1' id='type-id-426'/>
       <!-- struct std::forward_iterator_tag -->
-      <class-decl name='forward_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='83' column='1' id='type-id-288'>
+      <class-decl name='forward_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='83' column='1' id='type-id-289'>
         <!-- struct std::input_iterator_tag -->
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-425'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-426'/>
       </class-decl>
       <!-- struct std::bidirectional_iterator_tag -->
-      <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='86' column='1' id='type-id-426'>
+      <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='86' column='1' id='type-id-427'>
         <!-- struct std::forward_iterator_tag -->
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-288'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-289'/>
       </class-decl>
       <!-- struct std::random_access_iterator_tag -->
-      <class-decl name='random_access_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='89' column='1' id='type-id-427'>
+      <class-decl name='random_access_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='89' column='1' id='type-id-428'>
         <!-- struct std::bidirectional_iterator_tag -->
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-426'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-427'/>
       </class-decl>
       <!-- struct std::__uninitialized_fill_n<true> -->
-      <class-decl name='__uninitialized_fill_n&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='198' column='1' id='type-id-428'>
+      <class-decl name='__uninitialized_fill_n&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='198' column='1' id='type-id-429'>
         <member-function access='public' static='yes'>
           <!-- void std::__uninitialized_fill_n<true>::uninitialized_fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(unsigned long int, vtkPixelBufferObject* const&) -->
           <function-decl name='uninitialized_fill_n&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'vtkPixelBufferObject**' -->
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'vtkPixelBufferObject* const&' -->
-            <parameter type-id='type-id-416'/>
+            <parameter type-id='type-id-417'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7675,19 +7687,19 @@ 
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const float&' -->
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::_Vector_base<float, std::allocator<float> > -->
-      <class-decl name='_Vector_base&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-345'>
+      <class-decl name='_Vector_base&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-346'>
         <member-type access='public'>
           <!-- struct std::_Vector_base<float, std::allocator<float> >::_Vector_impl -->
-          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-388'>
+          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-389'>
             <!-- class std::allocator<float> -->
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-354'/>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-355'/>
             <data-member access='public' layout-offset-in-bits='0'>
               <!-- float* std::_Vector_base<float, std::allocator<float> >::_Vector_impl::_M_start -->
               <var-decl name='_M_start' type-id='type-id-55' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
@@ -7704,7 +7716,7 @@ 
               <!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl::_Vector_impl() -->
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >::_Vector_impl*' -->
-                <parameter type-id='type-id-389' is-artificial='yes'/>
+                <parameter type-id='type-id-390' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -7713,9 +7725,9 @@ 
               <!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl::_Vector_impl(const std::allocator<float>&) -->
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >::_Vector_impl*' -->
-                <parameter type-id='type-id-389' is-artificial='yes'/>
+                <parameter type-id='type-id-390' is-artificial='yes'/>
                 <!-- parameter of type 'const std::allocator<float>&' -->
-                <parameter type-id='type-id-356'/>
+                <parameter type-id='type-id-357'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -7724,13 +7736,13 @@ 
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl std::_Vector_base<float, std::allocator<float> >::_M_impl -->
-          <var-decl name='_M_impl' type-id='type-id-388' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-389' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <!-- void std::_Vector_base<float, std::allocator<float> >::_Vector_base() -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7739,9 +7751,9 @@ 
           <!-- void std::_Vector_base<float, std::allocator<float> >::_Vector_base(const std::allocator<float>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<float>&' -->
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-357'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7750,11 +7762,11 @@ 
           <!-- void std::_Vector_base<float, std::allocator<float> >::_Vector_base(unsigned long int, const std::allocator<float>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const std::allocator<float>&' -->
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-357'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7763,7 +7775,7 @@ 
           <!-- std::_Vector_base<float, std::allocator<float> >::~_Vector_base(int) -->
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -7774,16 +7786,16 @@ 
           <!-- std::allocator<float>& std::_Vector_base<float, std::allocator<float> >::_M_get_Tp_allocator() -->
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseIfSaIfEE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <!-- std::allocator<float>& -->
-            <return type-id='type-id-394'/>
+            <return type-id='type-id-395'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- float* std::_Vector_base<float, std::allocator<float> >::_M_allocate(unsigned long int) -->
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseIfSaIfEE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- float* -->
@@ -7794,7 +7806,7 @@ 
           <!-- void std::_Vector_base<float, std::allocator<float> >::_M_deallocate(float*, unsigned long int) -->
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseIfSaIfEE13_M_deallocateEPfm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <!-- parameter of type 'float*' -->
             <parameter type-id='type-id-55'/>
             <!-- parameter of type 'unsigned long int' -->
@@ -7807,36 +7819,36 @@ 
           <!-- const std::allocator<float>& std::_Vector_base<float, std::allocator<float> >::_M_get_Tp_allocator() -->
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNKSt12_Vector_baseIfSaIfEE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::_Vector_base<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-347' is-artificial='yes'/>
+            <parameter type-id='type-id-348' is-artificial='yes'/>
             <!-- const std::allocator<float>& -->
-            <return type-id='type-id-356'/>
+            <return type-id='type-id-357'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
-      <class-decl name='_Vector_base&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-348'>
+      <class-decl name='_Vector_base&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-349'>
         <member-type access='public'>
           <!-- struct std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl -->
-          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-391'>
+          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-392'>
             <!-- class std::allocator<vtkPixelBufferObject*> -->
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-357'/>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-358'/>
             <data-member access='public' layout-offset-in-bits='0'>
               <!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_M_start -->
-              <var-decl name='_M_start' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
+              <var-decl name='_M_start' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
               <!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_M_finish -->
-              <var-decl name='_M_finish' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='77' column='1'/>
+              <var-decl name='_M_finish' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='77' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='128'>
               <!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_M_end_of_storage -->
-              <var-decl name='_M_end_of_storage' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='78' column='1'/>
+              <var-decl name='_M_end_of_storage' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='78' column='1'/>
             </data-member>
             <member-function access='public' constructor='yes'>
               <!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_Vector_impl() -->
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl*' -->
-                <parameter type-id='type-id-392' is-artificial='yes'/>
+                <parameter type-id='type-id-393' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -7845,9 +7857,9 @@ 
               <!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_Vector_impl(const std::allocator<vtkPixelBufferObject*>&) -->
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl*' -->
-                <parameter type-id='type-id-392' is-artificial='yes'/>
+                <parameter type-id='type-id-393' is-artificial='yes'/>
                 <!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
-                <parameter type-id='type-id-359'/>
+                <parameter type-id='type-id-360'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -7856,13 +7868,13 @@ 
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_impl -->
-          <var-decl name='_M_impl' type-id='type-id-391' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-392' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_base() -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7871,9 +7883,9 @@ 
           <!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_base(const std::allocator<vtkPixelBufferObject*>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-360'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7882,11 +7894,11 @@ 
           <!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_base(unsigned long int, const std::allocator<vtkPixelBufferObject*>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-360'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7895,7 +7907,7 @@ 
           <!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::~_Vector_base(int) -->
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -7906,29 +7918,29 @@ 
           <!-- std::allocator<vtkPixelBufferObject*>& std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_get_Tp_allocator() -->
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <!-- std::allocator<vtkPixelBufferObject*>& -->
-            <return type-id='type-id-396'/>
+            <return type-id='type-id-397'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_allocate(unsigned long int) -->
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- vtkPixelBufferObject** -->
-            <return type-id='type-id-281'/>
+            <return type-id='type-id-282'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_deallocate(vtkPixelBufferObject**, unsigned long int) -->
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE13_M_deallocateEPS1_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelBufferObject**' -->
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- void -->
@@ -7937,14 +7949,14 @@ 
         </member-function>
       </class-decl>
       <!-- class std::vector<float, std::allocator<float> > -->
-      <class-decl name='vector&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-373'>
+      <class-decl name='vector&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-374'>
         <!-- struct std::_Vector_base<float, std::allocator<float> > -->
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-345'/>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-346'/>
         <member-function access='private'>
           <!-- void std::vector<float, std::allocator<float> >::vector() -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7953,9 +7965,9 @@ 
           <!-- void std::vector<float, std::allocator<float> >::vector(const std::allocator<float>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<float>&' -->
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-357'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7964,13 +7976,13 @@ 
           <!-- void std::vector<float, std::allocator<float> >::vector(unsigned long int, const float&, const std::allocator<float>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const float&' -->
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <!-- parameter of type 'const std::allocator<float>&' -->
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-357'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7979,9 +7991,9 @@ 
           <!-- void std::vector<float, std::allocator<float> >::vector(const std::vector<float, std::allocator<float> >&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'const std::vector<float, std::allocator<float> >&' -->
-            <parameter type-id='type-id-375'/>
+            <parameter type-id='type-id-376'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -7990,7 +8002,7 @@ 
           <!-- std::vector<float, std::allocator<float> >::~vector(int) -->
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -8001,11 +8013,11 @@ 
           <!-- void std::vector<float, std::allocator<float> >::_M_fill_initialize(unsigned long int, const float&) -->
           <function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorIfSaIfEE18_M_fill_initializeEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const float&' -->
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8014,18 +8026,18 @@ 
           <!-- float& std::vector<float, std::allocator<float> >::operator[](unsigned long int) -->
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorIfSaIfEEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- float& -->
-            <return type-id='type-id-386'/>
+            <return type-id='type-id-387'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- size_t std::vector<float, std::allocator<float> >::max_size() -->
           <function-decl name='max_size' mangled-name='_ZNKSt6vectorIfSaIfEE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='537' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-376' is-artificial='yes'/>
+            <parameter type-id='type-id-377' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -8034,7 +8046,7 @@ 
           <!-- size_t std::vector<float, std::allocator<float> >::size() -->
           <function-decl name='size' mangled-name='_ZNKSt6vectorIfSaIfEE4sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-376' is-artificial='yes'/>
+            <parameter type-id='type-id-377' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -8043,16 +8055,16 @@ 
           <!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > std::vector<float, std::allocator<float> >::end() -->
           <function-decl name='end' mangled-name='_ZNSt6vectorIfSaIfEE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
-            <return type-id='type-id-429'/>
+            <return type-id='type-id-430'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <!-- size_t std::vector<float, std::allocator<float> >::_M_check_len(unsigned long int, const char*) -->
           <function-decl name='_M_check_len' mangled-name='_ZNKSt6vectorIfSaIfEE12_M_check_lenEmPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1134' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-376' is-artificial='yes'/>
+            <parameter type-id='type-id-377' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const char*' -->
@@ -8065,16 +8077,16 @@ 
           <!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > std::vector<float, std::allocator<float> >::begin() -->
           <function-decl name='begin' mangled-name='_ZNSt6vectorIfSaIfEE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='425' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
-            <return type-id='type-id-429'/>
+            <return type-id='type-id-430'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <!-- void std::vector<float, std::allocator<float> >::_M_erase_at_end(float*) -->
           <function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorIfSaIfEE15_M_erase_at_endEPf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'float*' -->
             <parameter type-id='type-id-55'/>
             <!-- void -->
@@ -8085,13 +8097,13 @@ 
           <!-- void std::vector<float, std::allocator<float> >::insert(__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >, unsigned long int, const float&) -->
           <function-decl name='insert' mangled-name='_ZNSt6vectorIfSaIfEE6insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >' -->
-            <parameter type-id='type-id-429'/>
+            <parameter type-id='type-id-430'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const float&' -->
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8100,7 +8112,7 @@ 
           <!-- void std::vector<float, std::allocator<float> >::resize(unsigned long int, float) -->
           <function-decl name='resize' mangled-name='_ZNSt6vectorIfSaIfEE6resizeEmf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='552' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'float' -->
@@ -8113,27 +8125,27 @@ 
           <!-- void std::vector<float, std::allocator<float> >::_M_fill_insert(__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >, unsigned long int, const float&) -->
           <function-decl name='_M_fill_insert' mangled-name='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf'>
             <!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <!-- parameter of type 'class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >' -->
-            <parameter type-id='type-id-429'/>
+            <parameter type-id='type-id-430'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const float&' -->
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- class std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
-      <class-decl name='vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-377'>
+      <class-decl name='vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-378'>
         <!-- struct std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-348'/>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-349'/>
         <member-function access='private'>
           <!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector() -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8142,9 +8154,9 @@ 
           <!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector(const std::allocator<vtkPixelBufferObject*>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-360'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8153,13 +8165,13 @@ 
           <!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector(unsigned long int, vtkPixelBufferObject* const&, const std::allocator<vtkPixelBufferObject*>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'vtkPixelBufferObject* const&' -->
-            <parameter type-id='type-id-416'/>
+            <parameter type-id='type-id-417'/>
             <!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-360'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8168,9 +8180,9 @@ 
           <!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector(const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- parameter of type 'const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >&' -->
-            <parameter type-id='type-id-379'/>
+            <parameter type-id='type-id-380'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8179,7 +8191,7 @@ 
           <!-- std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::~vector(int) -->
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -8190,9 +8202,9 @@ 
           <!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_erase_at_end(vtkPixelBufferObject**) -->
           <function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE15_M_erase_at_endEPS1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelBufferObject**' -->
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8201,11 +8213,11 @@ 
           <!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_fill_initialize(unsigned long int, vtkPixelBufferObject* const&) -->
           <function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE18_M_fill_initializeEmRKS1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'vtkPixelBufferObject* const&' -->
-            <parameter type-id='type-id-416'/>
+            <parameter type-id='type-id-417'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8214,32 +8226,32 @@ 
           <!-- vtkPixelBufferObject*& std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::operator[](unsigned long int) -->
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- vtkPixelBufferObject*& -->
-            <return type-id='type-id-418'/>
+            <return type-id='type-id-419'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::clear() -->
           <function-decl name='clear' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE5clearEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='950' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::allocator<char> -->
-      <class-decl name='allocator&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='45' column='1' id='type-id-351'>
+      <class-decl name='allocator&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='45' column='1' id='type-id-352'>
         <!-- class __gnu_cxx::new_allocator<char> -->
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-323'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-324'/>
         <member-function access='public'>
           <!-- void std::allocator<char>::allocator() -->
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<char>*' -->
-            <parameter type-id='type-id-393' is-artificial='yes'/>
+            <parameter type-id='type-id-394' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8248,9 +8260,9 @@ 
           <!-- void std::allocator<char>::allocator(const std::allocator<char>&) -->
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<char>*' -->
-            <parameter type-id='type-id-393' is-artificial='yes'/>
+            <parameter type-id='type-id-394' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8259,7 +8271,7 @@ 
           <!-- std::allocator<char>::~allocator(int) -->
           <function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::allocator<char>*' -->
-            <parameter type-id='type-id-393' is-artificial='yes'/>
+            <parameter type-id='type-id-394' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -8268,10 +8280,10 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> > -->
-      <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='52' column='1' id='type-id-366'>
+      <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='52' column='1' id='type-id-367'>
         <member-type access='private'>
           <!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep_base -->
-          <class-decl name='_Rep_base' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='141' column='1' id='type-id-430'>
+          <class-decl name='_Rep_base' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='141' column='1' id='type-id-431'>
             <data-member access='public' layout-offset-in-bits='0'>
               <!-- size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep_base::_M_length -->
               <var-decl name='_M_length' type-id='type-id-50' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='142' column='1'/>
@@ -8288,9 +8300,9 @@ 
         </member-type>
         <member-type access='private'>
           <!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep -->
-          <class-decl name='_Rep' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='148' column='1' id='type-id-370'>
+          <class-decl name='_Rep' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='148' column='1' id='type-id-371'>
             <!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep_base -->
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-430'/>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-431'/>
             <data-member access='public' static='yes'>
               <!-- static const size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_max_size -->
               <var-decl name='_S_max_size' type-id='type-id-128' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='51' column='1'/>
@@ -8301,20 +8313,20 @@ 
             </data-member>
             <data-member access='public' static='yes'>
               <!-- static size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_empty_rep_storage[4] -->
-              <var-decl name='_S_empty_rep_storage' type-id='type-id-312' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='68' column='1'/>
+              <var-decl name='_S_empty_rep_storage' type-id='type-id-313' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='68' column='1'/>
             </data-member>
             <member-function access='public' static='yes'>
               <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_empty_rep() -->
               <function-decl name='_S_empty_rep' mangled-name='_ZNSs4_Rep12_S_empty_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& -->
-                <return type-id='type-id-404'/>
+                <return type-id='type-id-405'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <!-- char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_refdata() -->
               <function-decl name='_M_refdata' mangled-name='_ZNSs4_Rep10_M_refdataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
-                <parameter type-id='type-id-405' is-artificial='yes'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
                 <!-- char* -->
                 <return type-id='type-id-86'/>
               </function-decl>
@@ -8323,7 +8335,7 @@ 
               <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_set_sharable() -->
               <function-decl name='_M_set_sharable' mangled-name='_ZNSs4_Rep15_M_set_sharableEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
-                <parameter type-id='type-id-405' is-artificial='yes'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -8332,7 +8344,7 @@ 
               <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_set_length_and_sharable(unsigned long int) -->
               <function-decl name='_M_set_length_and_sharable' mangled-name='_ZNSs4_Rep26_M_set_length_and_sharableEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
-                <parameter type-id='type-id-405' is-artificial='yes'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
                 <!-- parameter of type 'unsigned long int' -->
                 <parameter type-id='type-id-4'/>
                 <!-- void -->
@@ -8343,7 +8355,7 @@ 
               <!-- bool std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_is_leaked() -->
               <function-decl name='_M_is_leaked' mangled-name='_ZNKSs4_Rep12_M_is_leakedEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
-                <parameter type-id='type-id-372' is-artificial='yes'/>
+                <parameter type-id='type-id-373' is-artificial='yes'/>
                 <!-- bool -->
                 <return type-id='type-id-1'/>
               </function-decl>
@@ -8352,9 +8364,9 @@ 
               <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_dispose(const std::allocator<char>&) -->
               <function-decl name='_M_dispose' mangled-name='_ZNSs4_Rep10_M_disposeERKSaIcE' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
-                <parameter type-id='type-id-405' is-artificial='yes'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
                 <!-- parameter of type 'const std::allocator<char>&' -->
-                <parameter type-id='type-id-353'/>
+                <parameter type-id='type-id-354'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -8363,9 +8375,9 @@ 
         </member-type>
         <member-type access='private'>
           <!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider -->
-          <class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='258' column='1' id='type-id-402'>
+          <class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='258' column='1' id='type-id-403'>
             <!-- struct std::allocator<char> -->
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-351'/>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-352'/>
             <data-member access='public' layout-offset-in-bits='0'>
               <!-- char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider::_M_p -->
               <var-decl name='_M_p' type-id='type-id-86' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='262' column='1'/>
@@ -8374,11 +8386,11 @@ 
               <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider::_Alloc_hider(char*, const std::allocator<char>&) -->
               <function-decl name='_Alloc_hider' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider*' -->
-                <parameter type-id='type-id-403' is-artificial='yes'/>
+                <parameter type-id='type-id-404' is-artificial='yes'/>
                 <!-- parameter of type 'char*' -->
                 <parameter type-id='type-id-86'/>
                 <!-- parameter of type 'const std::allocator<char>&' -->
-                <parameter type-id='type-id-353'/>
+                <parameter type-id='type-id-354'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -8391,13 +8403,13 @@ 
         </data-member>
         <data-member access='private' layout-offset-in-bits='0'>
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_dataplus -->
-          <var-decl name='_M_dataplus' type-id='type-id-402' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='274' column='1'/>
+          <var-decl name='_M_dataplus' type-id='type-id-403' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='274' column='1'/>
         </data-member>
         <member-function access='public'>
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string() -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='2144' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8406,9 +8418,9 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::allocator<char>&) -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8417,9 +8429,9 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
-            <parameter type-id='type-id-368'/>
+            <parameter type-id='type-id-369'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8428,9 +8440,9 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, unsigned long int, unsigned long int) -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
-            <parameter type-id='type-id-368'/>
+            <parameter type-id='type-id-369'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'unsigned long int' -->
@@ -8443,15 +8455,15 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, unsigned long int, unsigned long int, const std::allocator<char>&) -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='194' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
-            <parameter type-id='type-id-368'/>
+            <parameter type-id='type-id-369'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8460,13 +8472,13 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const char*, unsigned long int, const std::allocator<char>&) -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const char*' -->
             <parameter type-id='type-id-64'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8475,11 +8487,11 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const char*, const std::allocator<char>&) -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const char*' -->
             <parameter type-id='type-id-64'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8488,13 +8500,13 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(unsigned long int, char, const std::allocator<char>&) -->
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='220' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'char' -->
             <parameter type-id='type-id-2'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8503,7 +8515,7 @@ 
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string(int) -->
           <function-decl name='~basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='502' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -8514,13 +8526,13 @@ 
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string<char*>(char*, char*, const std::allocator<char>&) -->
           <function-decl name='basic_string&lt;char*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'char*' -->
             <parameter type-id='type-id-86'/>
             <!-- parameter of type 'char*' -->
             <parameter type-id='type-id-86'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8529,7 +8541,7 @@ 
           <!-- char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_data() -->
           <function-decl name='_M_data' mangled-name='_ZNKSs7_M_dataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <!-- char* -->
             <return type-id='type-id-86'/>
           </function-decl>
@@ -8538,7 +8550,7 @@ 
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_empty_rep() -->
           <function-decl name='_S_empty_rep' mangled-name='_ZNSs12_S_empty_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='411' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& -->
-            <return type-id='type-id-404'/>
+            <return type-id='type-id-405'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
@@ -8549,9 +8561,9 @@ 
             <!-- parameter of type 'char*' -->
             <parameter type-id='type-id-86'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- parameter of type 'struct std::__false_type' -->
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-288'/>
             <!-- char* -->
             <return type-id='type-id-86'/>
           </function-decl>
@@ -8564,7 +8576,7 @@ 
             <!-- parameter of type 'char*' -->
             <parameter type-id='type-id-86'/>
             <!-- parameter of type 'const std::allocator<char>&' -->
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <!-- char* -->
             <return type-id='type-id-86'/>
           </function-decl>
@@ -8573,36 +8585,36 @@ 
           <!-- std::allocator<char> std::basic_string<char, std::char_traits<char>, std::allocator<char> >::get_allocator() -->
           <function-decl name='get_allocator' mangled-name='_ZNKSs13get_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1629' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <!-- struct std::allocator<char> -->
-            <return type-id='type-id-351'/>
+            <return type-id='type-id-352'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_rep() -->
           <function-decl name='_M_rep' mangled-name='_ZNKSs6_M_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* -->
-            <return type-id='type-id-405'/>
+            <return type-id='type-id-406'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) -->
           <function-decl name='operator=' mangled-name='_ZNSsaSERKSs' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='510' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
-            <parameter type-id='type-id-368'/>
+            <parameter type-id='type-id-369'/>
             <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- const char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::c_str() -->
           <function-decl name='c_str' mangled-name='_ZNKSs5c_strEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1612' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <!-- const char* -->
             <return type-id='type-id-64'/>
           </function-decl>
@@ -8611,18 +8623,18 @@ 
           <!-- char& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator[](unsigned long int) -->
           <function-decl name='operator[]' mangled-name='_ZNSsixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- char& -->
-            <return type-id='type-id-329'/>
+            <return type-id='type-id-330'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_leak() -->
           <function-decl name='_M_leak' mangled-name='_ZNSs7_M_leakEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8631,29 +8643,29 @@ 
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(const char*) -->
           <function-decl name='operator=' mangled-name='_ZNSsaSEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const char*' -->
             <parameter type-id='type-id-64'/>
             <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator+=(const char*) -->
           <function-decl name='operator+=' mangled-name='_ZNSspLEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='804' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const char*' -->
             <parameter type-id='type-id-64'/>
             <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::length() -->
           <function-decl name='length' mangled-name='_ZNKSs6lengthEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -8662,40 +8674,40 @@ 
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::assign(const char*) -->
           <function-decl name='assign' mangled-name='_ZNSs6assignEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='972' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const char*' -->
             <parameter type-id='type-id-64'/>
             <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::append(const char*) -->
           <function-decl name='append' mangled-name='_ZNSs6appendEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='868' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <!-- parameter of type 'const char*' -->
             <parameter type-id='type-id-64'/>
             <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- typedef std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::string -->
-      <typedef-decl name='string' type-id='type-id-366' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='56' column='1' id='type-id-431'/>
+      <typedef-decl name='string' type-id='type-id-367' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='56' column='1' id='type-id-432'/>
       <!-- struct std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> > -->
-      <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-360'>
+      <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-361'>
         <member-function access='public'>
           <!-- void std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >::basic_ostringstream(int, void**, std::_Ios_Openmode) -->
           <function-decl name='basic_ostringstream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='402' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-398' is-artificial='yes'/>
+            <parameter type-id='type-id-399' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- artificial parameter of type 'void**' -->
-            <parameter type-id='type-id-294' is-artificial='yes'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
             <!-- parameter of type 'enum std::_Ios_Openmode' -->
-            <parameter type-id='type-id-275'/>
+            <parameter type-id='type-id-276'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8704,32 +8716,32 @@ 
           <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >::str() -->
           <function-decl name='str' mangled-name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='450' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-362' is-artificial='yes'/>
+            <parameter type-id='type-id-363' is-artificial='yes'/>
             <!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> > -->
-            <return type-id='type-id-366'/>
+            <return type-id='type-id-367'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <!-- std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >::~basic_ostringstream(int, void**) -->
           <function-decl name='~basic_ostringstream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='431' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-398' is-artificial='yes'/>
+            <parameter type-id='type-id-399' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- artificial parameter of type 'void**' -->
-            <parameter type-id='type-id-294' is-artificial='yes'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::basic_streambuf<char, std::char_traits<char> > -->
-      <class-decl name='basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-363'>
+      <class-decl name='basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-364'>
         <member-function access='protected'>
           <!-- void std::basic_streambuf<char, std::char_traits<char> >::basic_streambuf() -->
           <function-decl name='basic_streambuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='439' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_streambuf<char, std::char_traits<char> >*' -->
-            <parameter type-id='type-id-399' is-artificial='yes'/>
+            <parameter type-id='type-id-400' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -8738,7 +8750,7 @@ 
           <!-- char* std::basic_streambuf<char, std::char_traits<char> >::pptr() -->
           <function-decl name='pptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4pptrEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='508' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_streambuf<char, std::char_traits<char> >*' -->
-            <parameter type-id='type-id-365' is-artificial='yes'/>
+            <parameter type-id='type-id-366' is-artificial='yes'/>
             <!-- char* -->
             <return type-id='type-id-86'/>
           </function-decl>
@@ -8747,7 +8759,7 @@ 
           <!-- char* std::basic_streambuf<char, std::char_traits<char> >::egptr() -->
           <function-decl name='egptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5egptrEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='464' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_streambuf<char, std::char_traits<char> >*' -->
-            <parameter type-id='type-id-365' is-artificial='yes'/>
+            <parameter type-id='type-id-366' is-artificial='yes'/>
             <!-- char* -->
             <return type-id='type-id-86'/>
           </function-decl>
@@ -8756,7 +8768,7 @@ 
           <!-- char* std::basic_streambuf<char, std::char_traits<char> >::pbase() -->
           <function-decl name='pbase' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5pbaseEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='505' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::basic_streambuf<char, std::char_traits<char> >*' -->
-            <parameter type-id='type-id-365' is-artificial='yes'/>
+            <parameter type-id='type-id-366' is-artificial='yes'/>
             <!-- char* -->
             <return type-id='type-id-86'/>
           </function-decl>
@@ -8765,7 +8777,7 @@ 
           <!-- std::basic_streambuf<char, std::char_traits<char> >::~basic_streambuf(int) -->
           <function-decl name='~basic_streambuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_streambuf<char, std::char_traits<char> >*' -->
-            <parameter type-id='type-id-399' is-artificial='yes'/>
+            <parameter type-id='type-id-400' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -8774,48 +8786,48 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> > -->
-      <class-decl name='basic_stringbuf&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-406'>
+      <class-decl name='basic_stringbuf&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-407'>
         <member-function access='public'>
           <!-- void std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >::basic_stringbuf(std::_Ios_Openmode) -->
           <function-decl name='basic_stringbuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >*' -->
-            <parameter type-id='type-id-407' is-artificial='yes'/>
+            <parameter type-id='type-id-408' is-artificial='yes'/>
             <!-- parameter of type 'enum std::_Ios_Openmode' -->
-            <parameter type-id='type-id-275'/>
+            <parameter type-id='type-id-276'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-432'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-433'/>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-433'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-434'/>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const float*, std::vector<float, std::allocator<float> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-434'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-435'/>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-435'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-436'/>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-436'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-437'/>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-437'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-438'/>
       <!-- bool std::operator==<char>(const std::allocator<char>&, const std::allocator<char>&) -->
       <function-decl name='operator==&lt;char&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::allocator<char>&' -->
-        <parameter type-id='type-id-353'/>
+        <parameter type-id='type-id-354'/>
         <!-- parameter of type 'const std::allocator<char>&' -->
-        <parameter type-id='type-id-353'/>
+        <parameter type-id='type-id-354'/>
         <!-- bool -->
         <return type-id='type-id-1'/>
       </function-decl>
       <!-- std::_Ios_Openmode std::operator|(std::_Ios_Openmode, std::_Ios_Openmode) -->
       <function-decl name='operator|' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'enum std::_Ios_Openmode' -->
-        <parameter type-id='type-id-275'/>
+        <parameter type-id='type-id-276'/>
         <!-- parameter of type 'enum std::_Ios_Openmode' -->
-        <parameter type-id='type-id-275'/>
+        <parameter type-id='type-id-276'/>
         <!-- enum std::_Ios_Openmode -->
-        <return type-id='type-id-275'/>
+        <return type-id='type-id-276'/>
       </function-decl>
       <!-- vtkPixelExtent** std::__copy_move_a<false, vtkPixelExtent**, vtkPixelExtent**>(vtkPixelExtent**, vtkPixelExtent**, vtkPixelExtent**) -->
       <function-decl name='__copy_move_a&lt;false, vtkPixelExtent**, vtkPixelExtent**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -8890,20 +8902,20 @@ 
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'const float&' -->
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <!-- float* -->
         <return type-id='type-id-55'/>
       </function-decl>
       <!-- vtkPixelBufferObject** std::__fill_n_a<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&) -->
       <function-decl name='__fill_n_a&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='754' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'vtkPixelBufferObject* const&' -->
-        <parameter type-id='type-id-416'/>
+        <parameter type-id='type-id-417'/>
         <!-- vtkPixelBufferObject** -->
-        <return type-id='type-id-281'/>
+        <return type-id='type-id-282'/>
       </function-decl>
       <!-- float* std::fill_n<float*, long unsigned int, float>(float*, unsigned long int, const float&) -->
       <function-decl name='fill_n&lt;float*, long unsigned int, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -8912,20 +8924,20 @@ 
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'const float&' -->
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <!-- float* -->
         <return type-id='type-id-55'/>
       </function-decl>
       <!-- vtkPixelBufferObject** std::fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&) -->
       <function-decl name='fill_n&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'vtkPixelBufferObject* const&' -->
-        <parameter type-id='type-id-416'/>
+        <parameter type-id='type-id-417'/>
         <!-- vtkPixelBufferObject** -->
-        <return type-id='type-id-281'/>
+        <return type-id='type-id-282'/>
       </function-decl>
       <!-- void std::_Destroy<float*>(float*, float*) -->
       <function-decl name='_Destroy&lt;float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -8939,9 +8951,9 @@ 
       <!-- void std::_Destroy<vtkPixelBufferObject**>(vtkPixelBufferObject**, vtkPixelBufferObject**) -->
       <function-decl name='_Destroy&lt;vtkPixelBufferObject**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
@@ -8952,18 +8964,18 @@ 
         <!-- parameter of type 'float*' -->
         <parameter type-id='type-id-55'/>
         <!-- parameter of type 'std::allocator<float>&' -->
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-395'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
       <!-- void std::_Destroy<vtkPixelBufferObject**, vtkPixelBufferObject*>(vtkPixelBufferObject**, vtkPixelBufferObject**, std::allocator<vtkPixelBufferObject*>&) -->
       <function-decl name='_Destroy&lt;vtkPixelBufferObject**, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- parameter of type 'std::allocator<vtkPixelBufferObject*>&' -->
-        <parameter type-id='type-id-396'/>
+        <parameter type-id='type-id-397'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
@@ -8983,7 +8995,7 @@ 
         <!-- parameter of type 'char*' -->
         <parameter type-id='type-id-86'/>
         <!-- parameter of type 'struct std::random_access_iterator_tag' -->
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <!-- typedef ptrdiff_t -->
         <return type-id='type-id-105'/>
       </function-decl>
@@ -8999,9 +9011,9 @@ 
       <!-- std::random_access_iterator_tag std::__iterator_category<char*>(char* const&) -->
       <function-decl name='__iterator_category&lt;char*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'char* const&' -->
-        <parameter type-id='type-id-331'/>
+        <parameter type-id='type-id-332'/>
         <!-- struct std::random_access_iterator_tag -->
-        <return type-id='type-id-427'/>
+        <return type-id='type-id-428'/>
       </function-decl>
       <!-- void std::uninitialized_fill_n<float*, long unsigned int, float>(float*, unsigned long int, const float&) -->
       <function-decl name='uninitialized_fill_n&lt;float*, long unsigned int, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -9010,18 +9022,18 @@ 
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'const float&' -->
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
       <!-- void std::uninitialized_fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&) -->
       <function-decl name='uninitialized_fill_n&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'vtkPixelBufferObject* const&' -->
-        <parameter type-id='type-id-416'/>
+        <parameter type-id='type-id-417'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
@@ -9032,22 +9044,22 @@ 
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'const float&' -->
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <!-- parameter of type 'std::allocator<float>&' -->
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-395'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
       <!-- void std::__uninitialized_fill_n_a<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&, std::allocator<vtkPixelBufferObject*>&) -->
       <function-decl name='__uninitialized_fill_n_a&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'vtkPixelBufferObject**' -->
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <!-- parameter of type 'unsigned long int' -->
         <parameter type-id='type-id-4'/>
         <!-- parameter of type 'vtkPixelBufferObject* const&' -->
-        <parameter type-id='type-id-416'/>
+        <parameter type-id='type-id-417'/>
         <!-- parameter of type 'std::allocator<vtkPixelBufferObject*>&' -->
-        <parameter type-id='type-id-396'/>
+        <parameter type-id='type-id-397'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
@@ -9063,12 +9075,12 @@ 
       </function-decl>
     </namespace-decl>
     <!-- class vtkLineIntegralConvolution2D -->
-    <class-decl name='vtkLineIntegralConvolution2D' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='105' column='1' is-declaration-only='yes' id='type-id-381'>
+    <class-decl name='vtkLineIntegralConvolution2D' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='105' column='1' is-declaration-only='yes' id='type-id-382'>
       <!-- class vtkObject -->
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-268'/>
       <member-type access='private'>
         <!-- enum vtkLineIntegralConvolution2D::__anonymous_enum__ -->
-        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='149' column='1' id='type-id-438'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='149' column='1' id='type-id-439'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
           <enumerator name='ENHANCE_CONTRAST_ON' value='1'/>
@@ -9076,7 +9088,7 @@ 
       </member-type>
       <data-member access='protected' layout-offset-in-bits='384'>
         <!-- vtkPainterCommunicator* vtkLineIntegralConvolution2D::Comm -->
-        <var-decl name='Comm' type-id='type-id-320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='362' column='1'/>
+        <var-decl name='Comm' type-id='type-id-321' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='362' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='448'>
         <!-- vtkWeakPointer<vtkRenderWindow> vtkLineIntegralConvolution2D::Context -->
@@ -9084,7 +9096,7 @@ 
       </data-member>
       <data-member access='protected' layout-offset-in-bits='512'>
         <!-- vtkFrameBufferObject2* vtkLineIntegralConvolution2D::FBO -->
-        <var-decl name='FBO' type-id='type-id-318' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='365' column='1'/>
+        <var-decl name='FBO' type-id='type-id-319' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='365' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='576'>
         <!-- int vtkLineIntegralConvolution2D::ShadersNeedBuild -->
@@ -9168,7 +9180,7 @@ 
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1664'>
         <!-- int vtkLineIntegralConvolution2D::ComponentIds[2] -->
-        <var-decl name='ComponentIds' type-id='type-id-310' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='388' column='1'/>
+        <var-decl name='ComponentIds' type-id='type-id-311' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='388' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1728'>
         <!-- double vtkLineIntegralConvolution2D::MaxNoiseValue -->
@@ -9178,7 +9190,7 @@ 
         <!-- vtkLineIntegralConvolution2D::vtkLineIntegralConvolution2D() -->
         <function-decl name='vtkLineIntegralConvolution2D' mangled-name='_ZN28vtkLineIntegralConvolution2DC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2DC1Ev'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9187,9 +9199,9 @@ 
         <!-- vtkLineIntegralConvolution2D::vtkLineIntegralConvolution2D(const vtkLineIntegralConvolution2D&) -->
         <function-decl name='vtkLineIntegralConvolution2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='392' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'const vtkLineIntegralConvolution2D&' -->
-          <parameter type-id='type-id-383'/>
+          <parameter type-id='type-id-384'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9207,7 +9219,7 @@ 
         <!-- vtkRenderWindow* vtkLineIntegralConvolution2D::GetContext() -->
         <function-decl name='GetContext' mangled-name='_ZN28vtkLineIntegralConvolution2D10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D10GetContextEv'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- vtkRenderWindow* -->
           <return type-id='type-id-35'/>
         </function-decl>
@@ -9216,7 +9228,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetComponentIds(int, int) -->
         <function-decl name='SetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'int' -->
@@ -9229,7 +9241,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetTransformVectors(int) -->
         <function-decl name='SetTransformVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -9240,7 +9252,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetNormalizeVectors(int) -->
         <function-decl name='SetNormalizeVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -9251,7 +9263,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetVTShader(vtkShaderProgram2*) -->
         <function-decl name='SetVTShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9262,7 +9274,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetLIC0Shader(vtkShaderProgram2*) -->
         <function-decl name='SetLIC0Shader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9273,7 +9285,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetLICIShader(vtkShaderProgram2*) -->
         <function-decl name='SetLICIShader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9284,7 +9296,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetLICNShader(vtkShaderProgram2*) -->
         <function-decl name='SetLICNShader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9295,7 +9307,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetEEShader(vtkShaderProgram2*) -->
         <function-decl name='SetEEShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9306,7 +9318,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetCEShader(vtkShaderProgram2*) -->
         <function-decl name='SetCEShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9317,7 +9329,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetAAHShader(vtkShaderProgram2*) -->
         <function-decl name='SetAAHShader' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9328,7 +9340,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetAAVShader(vtkShaderProgram2*) -->
         <function-decl name='SetAAVShader' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -9339,7 +9351,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetVectorTexParameters() -->
         <function-decl name='SetVectorTexParameters' mangled-name='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1099' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject'>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9348,7 +9360,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetNoiseTexParameters() -->
         <function-decl name='SetNoiseTexParameters' mangled-name='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1084' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject'>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9366,7 +9378,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetContext(vtkRenderWindow*) -->
         <function-decl name='SetContext' mangled-name='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-35'/>
           <!-- void -->
@@ -9377,14 +9389,14 @@ 
         <!-- vtkLineIntegralConvolution2D* vtkLineIntegralConvolution2D::New() -->
         <function-decl name='New' mangled-name='_ZN28vtkLineIntegralConvolution2D3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='956' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D3NewEv'>
           <!-- vtkLineIntegralConvolution2D* -->
-          <return type-id='type-id-413'/>
+          <return type-id='type-id-414'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkLineIntegralConvolution2D::BuildShaders() -->
         <function-decl name='BuildShaders' mangled-name='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9393,7 +9405,7 @@ 
         <!-- vtkTextureObject* vtkLineIntegralConvolution2D::Execute(const vtkPixelExtent&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, vtkTextureObject*, vtkTextureObject*, vtkTextureObject*) -->
         <function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'const vtkPixelExtent&' -->
           <parameter type-id='type-id-45'/>
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -9401,48 +9413,48 @@ 
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
           <parameter type-id='type-id-166'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkLineIntegralConvolution2D::Execute(const int*, vtkTextureObject*, vtkTextureObject*) -->
         <function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'const int*' -->
           <parameter type-id='type-id-46'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkLineIntegralConvolution2D::Execute(vtkTextureObject*, vtkTextureObject*) -->
         <function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <!-- vtkLineIntegralConvolution2D::~vtkLineIntegralConvolution2D(int) -->
         <function-decl name='~vtkLineIntegralConvolution2D' mangled-name='_ZN28vtkLineIntegralConvolution2DD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='994' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2DD1Ev'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -9453,7 +9465,7 @@ 
         <!-- const char* vtkLineIntegralConvolution2D::GetClassNameInternal() -->
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK28vtkLineIntegralConvolution2D20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-384' is-artificial='yes'/>
+          <parameter type-id='type-id-385' is-artificial='yes'/>
           <!-- const char* -->
           <return type-id='type-id-64'/>
         </function-decl>
@@ -9462,7 +9474,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::IsA(const char*) -->
         <function-decl name='IsA' mangled-name='_ZN28vtkLineIntegralConvolution2D3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- int -->
@@ -9473,7 +9485,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::PrintSelf(std::ostream&, vtkIndent) -->
         <function-decl name='PrintSelf' mangled-name='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='2129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'std::ostream&' -->
           <parameter type-id='type-id-67'/>
           <!-- parameter of type 'class vtkIndent' -->
@@ -9486,7 +9498,7 @@ 
         <!-- vtkObjectBase* vtkLineIntegralConvolution2D::NewInstanceInternal() -->
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK28vtkLineIntegralConvolution2D19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-384' is-artificial='yes'/>
+          <parameter type-id='type-id-385' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-41'/>
         </function-decl>
@@ -9495,7 +9507,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetEnhancedLIC(int) -->
         <function-decl name='SetEnhancedLIC' mangled-name='_ZN28vtkLineIntegralConvolution2D14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -9506,7 +9518,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetEnhancedLICMinValue() -->
         <function-decl name='GetEnhancedLICMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D22GetEnhancedLICMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9515,7 +9527,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetEnhancedLICMaxValue() -->
         <function-decl name='GetEnhancedLICMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D22GetEnhancedLICMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9524,7 +9536,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetEnhancedLIC() -->
         <function-decl name='GetEnhancedLIC' mangled-name='_ZN28vtkLineIntegralConvolution2D14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9533,7 +9545,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::EnhancedLICOn() -->
         <function-decl name='EnhancedLICOn' mangled-name='_ZN28vtkLineIntegralConvolution2D13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9542,7 +9554,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::EnhancedLICOff() -->
         <function-decl name='EnhancedLICOff' mangled-name='_ZN28vtkLineIntegralConvolution2D14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9551,7 +9563,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetEnhanceContrast(int) -->
         <function-decl name='SetEnhanceContrast' mangled-name='_ZN28vtkLineIntegralConvolution2D18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -9562,7 +9574,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetEnhanceContrastMinValue() -->
         <function-decl name='GetEnhanceContrastMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D26GetEnhanceContrastMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9571,7 +9583,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetEnhanceContrastMaxValue() -->
         <function-decl name='GetEnhanceContrastMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D26GetEnhanceContrastMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9580,7 +9592,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetEnhanceContrast() -->
         <function-decl name='GetEnhanceContrast' mangled-name='_ZN28vtkLineIntegralConvolution2D18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9589,7 +9601,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::EnhanceContrastOn() -->
         <function-decl name='EnhanceContrastOn' mangled-name='_ZN28vtkLineIntegralConvolution2D17EnhanceContrastOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9598,7 +9610,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::EnhanceContrastOff() -->
         <function-decl name='EnhanceContrastOff' mangled-name='_ZN28vtkLineIntegralConvolution2D18EnhanceContrastOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9607,7 +9619,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetLowContrastEnhancementFactor(double) -->
         <function-decl name='SetLowContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D31SetLowContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -9618,7 +9630,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetLowContrastEnhancementFactorMinValue() -->
         <function-decl name='GetLowContrastEnhancementFactorMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D39GetLowContrastEnhancementFactorMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9627,7 +9639,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetLowContrastEnhancementFactorMaxValue() -->
         <function-decl name='GetLowContrastEnhancementFactorMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D39GetLowContrastEnhancementFactorMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9636,7 +9648,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetLowContrastEnhancementFactor() -->
         <function-decl name='GetLowContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D31GetLowContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9645,7 +9657,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetHighContrastEnhancementFactor(double) -->
         <function-decl name='SetHighContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D32SetHighContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -9656,7 +9668,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetHighContrastEnhancementFactorMinValue() -->
         <function-decl name='GetHighContrastEnhancementFactorMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D40GetHighContrastEnhancementFactorMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9665,7 +9677,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetHighContrastEnhancementFactorMaxValue() -->
         <function-decl name='GetHighContrastEnhancementFactorMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D40GetHighContrastEnhancementFactorMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9674,7 +9686,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetHighContrastEnhancementFactor() -->
         <function-decl name='GetHighContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D32GetHighContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9683,7 +9695,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetAntiAlias(int) -->
         <function-decl name='SetAntiAlias' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -9694,7 +9706,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetAntiAliasMinValue() -->
         <function-decl name='GetAntiAliasMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D20GetAntiAliasMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9703,7 +9715,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetAntiAliasMaxValue() -->
         <function-decl name='GetAntiAliasMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D20GetAntiAliasMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9712,7 +9724,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetAntiAlias() -->
         <function-decl name='GetAntiAlias' mangled-name='_ZN28vtkLineIntegralConvolution2D12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9721,7 +9733,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::AntiAliasOn() -->
         <function-decl name='AntiAliasOn' mangled-name='_ZN28vtkLineIntegralConvolution2D11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9730,7 +9742,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::AntiAliasOff() -->
         <function-decl name='AntiAliasOff' mangled-name='_ZN28vtkLineIntegralConvolution2D12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9739,7 +9751,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetNumberOfSteps(int) -->
         <function-decl name='SetNumberOfSteps' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -9750,7 +9762,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetNumberOfStepsMinValue() -->
         <function-decl name='GetNumberOfStepsMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetNumberOfStepsMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9759,7 +9771,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetNumberOfStepsMaxValue() -->
         <function-decl name='GetNumberOfStepsMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetNumberOfStepsMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9768,7 +9780,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetNumberOfSteps() -->
         <function-decl name='GetNumberOfSteps' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='190' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9777,7 +9789,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetStepSize(double) -->
         <function-decl name='SetStepSize' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -9788,7 +9800,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetStepSizeMinValue() -->
         <function-decl name='GetStepSizeMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetStepSizeMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9797,7 +9809,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetStepSizeMaxValue() -->
         <function-decl name='GetStepSizeMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetStepSizeMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9806,7 +9818,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetStepSize() -->
         <function-decl name='GetStepSize' mangled-name='_ZN28vtkLineIntegralConvolution2D11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9815,7 +9827,7 @@ 
         <!-- int* vtkLineIntegralConvolution2D::GetComponentIds() -->
         <function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int* -->
           <return type-id='type-id-47'/>
         </function-decl>
@@ -9824,7 +9836,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::GetComponentIds(int&, int&) -->
         <function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsERiS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int&' -->
           <parameter type-id='type-id-52'/>
           <!-- parameter of type 'int&' -->
@@ -9837,7 +9849,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::GetComponentIds(int*) -->
         <function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsEPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'int*' -->
           <parameter type-id='type-id-47'/>
           <!-- void -->
@@ -9848,7 +9860,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetMaxNoiseValue(double) -->
         <function-decl name='SetMaxNoiseValue' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -9859,7 +9871,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetMaxNoiseValueMinValue() -->
         <function-decl name='GetMaxNoiseValueMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaxNoiseValueMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9868,7 +9880,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetMaxNoiseValueMaxValue() -->
         <function-decl name='GetMaxNoiseValueMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaxNoiseValueMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9877,7 +9889,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetMaxNoiseValue() -->
         <function-decl name='GetMaxNoiseValue' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9886,7 +9898,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetTransformVectors() -->
         <function-decl name='GetTransformVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetTransformVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9895,7 +9907,7 @@ 
         <!-- int vtkLineIntegralConvolution2D::GetNormalizeVectors() -->
         <function-decl name='GetNormalizeVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -9904,7 +9916,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetMaskThreshold(double) -->
         <function-decl name='SetMaskThreshold' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -9915,7 +9927,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetMaskThresholdMinValue() -->
         <function-decl name='GetMaskThresholdMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaskThresholdMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9924,7 +9936,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetMaskThresholdMaxValue() -->
         <function-decl name='GetMaskThresholdMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaskThresholdMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9933,7 +9945,7 @@ 
         <!-- double vtkLineIntegralConvolution2D::GetMaskThreshold() -->
         <function-decl name='GetMaskThreshold' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -9942,9 +9954,9 @@ 
         <!-- void vtkLineIntegralConvolution2D::SetCommunicator(vtkPainterCommunicator*) -->
         <function-decl name='SetCommunicator' mangled-name='_ZN28vtkLineIntegralConvolution2D15SetCommunicatorEP22vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320'/>
+          <parameter type-id='type-id-321'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9953,22 +9965,22 @@ 
         <!-- vtkPainterCommunicator* vtkLineIntegralConvolution2D::GetCommunicator() -->
         <function-decl name='GetCommunicator' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1014' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- vtkPainterCommunicator* -->
-          <return type-id='type-id-320'/>
+          <return type-id='type-id-321'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='69'>
         <!-- void vtkLineIntegralConvolution2D::GetGlobalMinMax(vtkPainterCommunicator*, float&, float&) -->
         <function-decl name='GetGlobalMinMax' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320'/>
+          <parameter type-id='type-id-321'/>
           <!-- parameter of type 'float&' -->
-          <parameter type-id='type-id-386'/>
+          <parameter type-id='type-id-387'/>
           <!-- parameter of type 'float&' -->
-          <parameter type-id='type-id-386'/>
+          <parameter type-id='type-id-387'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -9977,7 +9989,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::WriteTimerLog(const char*) -->
         <function-decl name='WriteTimerLog' mangled-name='_ZN28vtkLineIntegralConvolution2D13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- void -->
@@ -9988,7 +10000,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::StartTimerEvent(const char*) -->
         <function-decl name='StartTimerEvent' mangled-name='_ZN28vtkLineIntegralConvolution2D15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='358' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- void -->
@@ -9999,7 +10011,7 @@ 
         <!-- void vtkLineIntegralConvolution2D::EndTimerEvent(const char*) -->
         <function-decl name='EndTimerEvent' mangled-name='_ZN28vtkLineIntegralConvolution2D13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- void -->
@@ -10010,7 +10022,7 @@ 
     <!-- namespace __gnu_cxx -->
     <namespace-decl name='__gnu_cxx'>
       <!-- class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
-      <class-decl name='__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='669' column='1' id='type-id-429'>
+      <class-decl name='__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='669' column='1' id='type-id-430'>
         <data-member access='protected' layout-offset-in-bits='0'>
           <!-- float* __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::_M_current -->
           <var-decl name='_M_current' type-id='type-id-55' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='671' column='1'/>
@@ -10019,7 +10031,7 @@ 
           <!-- void __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::__normal_iterator() -->
           <function-decl name='__normal_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='683' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >*' -->
-            <parameter type-id='type-id-439' is-artificial='yes'/>
+            <parameter type-id='type-id-440' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10028,9 +10040,9 @@ 
           <!-- void __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::__normal_iterator(float* const&) -->
           <function-decl name='__normal_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='686' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >*' -->
-            <parameter type-id='type-id-439' is-artificial='yes'/>
+            <parameter type-id='type-id-440' is-artificial='yes'/>
             <!-- parameter of type 'float* const&' -->
-            <parameter type-id='type-id-440'/>
+            <parameter type-id='type-id-441'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10039,19 +10051,19 @@ 
           <!-- float* const& __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::base() -->
           <function-decl name='base' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPfSt6vectorIfSaIfEEE4baseEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >*' -->
-            <parameter type-id='type-id-441' is-artificial='yes'/>
+            <parameter type-id='type-id-442' is-artificial='yes'/>
             <!-- float* const& -->
-            <return type-id='type-id-440'/>
+            <return type-id='type-id-441'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- class __gnu_cxx::new_allocator<char> -->
-      <class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-323'>
+      <class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-324'>
         <member-function access='private'>
           <!-- void __gnu_cxx::new_allocator<char>::new_allocator() -->
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<char>*' -->
-            <parameter type-id='type-id-324' is-artificial='yes'/>
+            <parameter type-id='type-id-325' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10060,9 +10072,9 @@ 
           <!-- void __gnu_cxx::new_allocator<char>::new_allocator(const __gnu_cxx::new_allocator<char>&) -->
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<char>*' -->
-            <parameter type-id='type-id-324' is-artificial='yes'/>
+            <parameter type-id='type-id-325' is-artificial='yes'/>
             <!-- parameter of type 'const __gnu_cxx::new_allocator<char>&' -->
-            <parameter type-id='type-id-333'/>
+            <parameter type-id='type-id-334'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10071,7 +10083,7 @@ 
           <!-- __gnu_cxx::new_allocator<char>::~new_allocator(int) -->
           <function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<char>*' -->
-            <parameter type-id='type-id-324' is-artificial='yes'/>
+            <parameter type-id='type-id-325' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -10080,12 +10092,12 @@ 
         </member-function>
       </class-decl>
       <!-- class __gnu_cxx::new_allocator<float> -->
-      <class-decl name='new_allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-325'>
+      <class-decl name='new_allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-326'>
         <member-function access='private'>
           <!-- void __gnu_cxx::new_allocator<float>::new_allocator() -->
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10094,9 +10106,9 @@ 
           <!-- void __gnu_cxx::new_allocator<float>::new_allocator(const __gnu_cxx::new_allocator<float>&) -->
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <!-- parameter of type 'const __gnu_cxx::new_allocator<float>&' -->
-            <parameter type-id='type-id-336'/>
+            <parameter type-id='type-id-337'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10105,7 +10117,7 @@ 
           <!-- __gnu_cxx::new_allocator<float>::~new_allocator(int) -->
           <function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -10116,7 +10128,7 @@ 
           <!-- size_t __gnu_cxx::new_allocator<float>::max_size() -->
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIfE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const __gnu_cxx::new_allocator<float>*' -->
-            <parameter type-id='type-id-337' is-artificial='yes'/>
+            <parameter type-id='type-id-338' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -10125,7 +10137,7 @@ 
           <!-- float* __gnu_cxx::new_allocator<float>::allocate(unsigned long int, void*) -->
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIfE8allocateEmPKv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'void*' -->
@@ -10138,7 +10150,7 @@ 
           <!-- void __gnu_cxx::new_allocator<float>::deallocate(float*, unsigned long int) -->
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIfE10deallocateEPfm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <!-- parameter of type 'float*' -->
             <parameter type-id='type-id-55'/>
             <!-- parameter of type 'unsigned long int' -->
@@ -10149,12 +10161,12 @@ 
         </member-function>
       </class-decl>
       <!-- class __gnu_cxx::new_allocator<vtkPixelBufferObject*> -->
-      <class-decl name='new_allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-327'>
+      <class-decl name='new_allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-328'>
         <member-function access='private'>
           <!-- void __gnu_cxx::new_allocator<vtkPixelBufferObject*>::new_allocator() -->
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10163,9 +10175,9 @@ 
           <!-- void __gnu_cxx::new_allocator<vtkPixelBufferObject*>::new_allocator(const __gnu_cxx::new_allocator<vtkPixelBufferObject*>&) -->
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <!-- parameter of type 'const __gnu_cxx::new_allocator<vtkPixelBufferObject*>&' -->
-            <parameter type-id='type-id-339'/>
+            <parameter type-id='type-id-340'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -10174,7 +10186,7 @@ 
           <!-- __gnu_cxx::new_allocator<vtkPixelBufferObject*>::~new_allocator(int) -->
           <function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -10185,7 +10197,7 @@ 
           <!-- size_t __gnu_cxx::new_allocator<vtkPixelBufferObject*>::max_size() -->
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const __gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-340' is-artificial='yes'/>
+            <parameter type-id='type-id-341' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -10194,22 +10206,22 @@ 
           <!-- vtkPixelBufferObject** __gnu_cxx::new_allocator<vtkPixelBufferObject*>::allocate(unsigned long int, void*) -->
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE8allocateEmPKv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'void*' -->
             <parameter type-id='type-id-14'/>
             <!-- vtkPixelBufferObject** -->
-            <return type-id='type-id-281'/>
+            <return type-id='type-id-282'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <!-- void __gnu_cxx::new_allocator<vtkPixelBufferObject*>::deallocate(vtkPixelBufferObject**, unsigned long int) -->
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE10deallocateEPS2_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelBufferObject**' -->
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- void -->
@@ -10218,15 +10230,15 @@ 
         </member-function>
       </class-decl>
       <!-- class __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > -->
-      <class-decl name='__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-442'/>
+      <class-decl name='__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-443'/>
       <!-- class __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > -->
-      <class-decl name='__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-443'/>
+      <class-decl name='__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-444'/>
       <!-- class __gnu_cxx::__normal_iterator<const float*, std::vector<float, std::allocator<float> > > -->
-      <class-decl name='__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-444'/>
+      <class-decl name='__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-445'/>
       <!-- class __gnu_cxx::__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > -->
-      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-445'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-446'/>
       <!-- class __gnu_cxx::__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > -->
-      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-446'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-447'/>
       <!-- bool __gnu_cxx::__is_null_pointer<char>(char*) -->
       <function-decl name='__is_null_pointer&lt;char&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/type_traits.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'char*' -->
@@ -10242,11 +10254,11 @@ 
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- typedef int vtkTypeInt32 -->
-    <typedef-decl name='vtkTypeInt32' type-id='type-id-17' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkType.h' line='197' column='1' id='type-id-447'/>
+    <typedef-decl name='vtkTypeInt32' type-id='type-id-17' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkType.h' line='197' column='1' id='type-id-448'/>
     <!-- class vtkStructuredGridLIC2D -->
-    <class-decl name='vtkStructuredGridLIC2D' size-in-bits='1472' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='51' column='1' id='type-id-448'>
+    <class-decl name='vtkStructuredGridLIC2D' size-in-bits='1472' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='51' column='1' id='type-id-449'>
       <!-- class vtkStructuredGridAlgorithm -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-449'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-450'/>
       <data-member access='protected' layout-offset-in-bits='1024'>
         <!-- int vtkStructuredGridLIC2D::Steps -->
         <var-decl name='Steps' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='149' column='1'/>
@@ -10287,7 +10299,7 @@ 
         <!-- vtkStructuredGridLIC2D::vtkStructuredGridLIC2D() -->
         <function-decl name='vtkStructuredGridLIC2D' mangled-name='_ZN22vtkStructuredGridLIC2DC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2DC1Ev'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -10296,9 +10308,9 @@ 
         <!-- vtkStructuredGridLIC2D::vtkStructuredGridLIC2D(const vtkStructuredGridLIC2D&) -->
         <function-decl name='vtkStructuredGridLIC2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'const vtkStructuredGridLIC2D&' -->
-          <parameter type-id='type-id-451'/>
+          <parameter type-id='type-id-452'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -10316,7 +10328,7 @@ 
         <!-- vtkRenderWindow* vtkStructuredGridLIC2D::GetContext() -->
         <function-decl name='GetContext' mangled-name='_ZN22vtkStructuredGridLIC2D10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D10GetContextEv'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- vtkRenderWindow* -->
           <return type-id='type-id-35'/>
         </function-decl>
@@ -10325,9 +10337,9 @@ 
         <!-- void vtkStructuredGridLIC2D::AllocateScalars(vtkStructuredGrid*, vtkInformation*) -->
         <function-decl name='AllocateScalars' mangled-name='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'vtkStructuredGrid*' -->
-          <parameter type-id='type-id-452'/>
+          <parameter type-id='type-id-453'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-237'/>
           <!-- void -->
@@ -10338,7 +10350,7 @@ 
         <!-- int vtkStructuredGridLIC2D::SetContext(vtkRenderWindow*) -->
         <function-decl name='SetContext' mangled-name='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-35'/>
           <!-- int -->
@@ -10349,14 +10361,14 @@ 
         <!-- vtkStructuredGridLIC2D* vtkStructuredGridLIC2D::New() -->
         <function-decl name='New' mangled-name='_ZN22vtkStructuredGridLIC2D3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='50' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D3NewEv'>
           <!-- vtkStructuredGridLIC2D* -->
-          <return type-id='type-id-450'/>
+          <return type-id='type-id-451'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- void vtkStructuredGridLIC2D::AllocateOutputData(vtkDataObject*, vtkInformation*) -->
         <function-decl name='AllocateOutputData' mangled-name='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataObject*' -->
           <parameter type-id='type-id-229'/>
           <!-- parameter of type 'vtkInformation*' -->
@@ -10369,7 +10381,7 @@ 
         <!-- vtkStructuredGridLIC2D::~vtkStructuredGridLIC2D(int) -->
         <function-decl name='~vtkStructuredGridLIC2D' mangled-name='_ZN22vtkStructuredGridLIC2DD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2DD1Ev'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -10380,7 +10392,7 @@ 
         <!-- const char* vtkStructuredGridLIC2D::GetClassNameInternal() -->
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK22vtkStructuredGridLIC2D20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-453' is-artificial='yes'/>
+          <parameter type-id='type-id-454' is-artificial='yes'/>
           <!-- const char* -->
           <return type-id='type-id-64'/>
         </function-decl>
@@ -10389,7 +10401,7 @@ 
         <!-- int vtkStructuredGridLIC2D::IsA(const char*) -->
         <function-decl name='IsA' mangled-name='_ZN22vtkStructuredGridLIC2D3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- int -->
@@ -10400,7 +10412,7 @@ 
         <!-- void vtkStructuredGridLIC2D::PrintSelf(std::ostream&, vtkIndent) -->
         <function-decl name='PrintSelf' mangled-name='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='840' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'std::ostream&' -->
           <parameter type-id='type-id-67'/>
           <!-- parameter of type 'class vtkIndent' -->
@@ -10413,7 +10425,7 @@ 
         <!-- vtkObjectBase* vtkStructuredGridLIC2D::NewInstanceInternal() -->
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK22vtkStructuredGridLIC2D19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-453' is-artificial='yes'/>
+          <parameter type-id='type-id-454' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-41'/>
         </function-decl>
@@ -10422,7 +10434,7 @@ 
         <!-- int vtkStructuredGridLIC2D::FillInputPortInformation(int, vtkInformation*) -->
         <function-decl name='FillInputPortInformation' mangled-name='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'vtkInformation*' -->
@@ -10435,7 +10447,7 @@ 
         <!-- int vtkStructuredGridLIC2D::FillOutputPortInformation(int, vtkInformation*) -->
         <function-decl name='FillOutputPortInformation' mangled-name='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'vtkInformation*' -->
@@ -10448,7 +10460,7 @@ 
         <!-- int vtkStructuredGridLIC2D::RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
         <function-decl name='RequestInformation' mangled-name='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-237'/>
           <!-- parameter of type 'vtkInformationVector**' -->
@@ -10463,7 +10475,7 @@ 
         <!-- int vtkStructuredGridLIC2D::RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
         <function-decl name='RequestData' mangled-name='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-237'/>
           <!-- parameter of type 'vtkInformationVector**' -->
@@ -10478,7 +10490,7 @@ 
         <!-- int vtkStructuredGridLIC2D::RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
         <function-decl name='RequestUpdateExtent' mangled-name='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-237'/>
           <!-- parameter of type 'vtkInformationVector**' -->
@@ -10493,7 +10505,7 @@ 
         <!-- void vtkStructuredGridLIC2D::SetSteps(int) -->
         <function-decl name='SetSteps' mangled-name='_ZN22vtkStructuredGridLIC2D8SetStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -10504,7 +10516,7 @@ 
         <!-- int vtkStructuredGridLIC2D::GetSteps() -->
         <function-decl name='GetSteps' mangled-name='_ZN22vtkStructuredGridLIC2D8GetStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -10513,7 +10525,7 @@ 
         <!-- void vtkStructuredGridLIC2D::SetStepSize(double) -->
         <function-decl name='SetStepSize' mangled-name='_ZN22vtkStructuredGridLIC2D11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -10524,7 +10536,7 @@ 
         <!-- double vtkStructuredGridLIC2D::GetStepSize() -->
         <function-decl name='GetStepSize' mangled-name='_ZN22vtkStructuredGridLIC2D11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -10533,7 +10545,7 @@ 
         <!-- void vtkStructuredGridLIC2D::SetMagnification(int) -->
         <function-decl name='SetMagnification' mangled-name='_ZN22vtkStructuredGridLIC2D16SetMagnificationEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -10544,7 +10556,7 @@ 
         <!-- int vtkStructuredGridLIC2D::GetMagnificationMinValue() -->
         <function-decl name='GetMagnificationMinValue' mangled-name='_ZN22vtkStructuredGridLIC2D24GetMagnificationMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -10553,7 +10565,7 @@ 
         <!-- int vtkStructuredGridLIC2D::GetMagnificationMaxValue() -->
         <function-decl name='GetMagnificationMaxValue' mangled-name='_ZN22vtkStructuredGridLIC2D24GetMagnificationMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -10562,7 +10574,7 @@ 
         <!-- int vtkStructuredGridLIC2D::GetMagnification() -->
         <function-decl name='GetMagnification' mangled-name='_ZN22vtkStructuredGridLIC2D16GetMagnificationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -10571,21 +10583,21 @@ 
         <!-- int vtkStructuredGridLIC2D::GetOpenGLExtensionsSupported() -->
         <function-decl name='GetOpenGLExtensionsSupported' mangled-name='_ZN22vtkStructuredGridLIC2D28GetOpenGLExtensionsSupportedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkAtomicInt<int> -->
-    <class-decl name='vtkAtomicInt&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='308' column='1' id='type-id-454'>
+    <class-decl name='vtkAtomicInt&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='308' column='1' id='type-id-455'>
       <!-- class detail::vtkAtomicIntImpl<int> -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-455'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-456'/>
       <member-function access='private'>
         <!-- void vtkAtomicInt<int>::vtkAtomicInt() -->
         <function-decl name='vtkAtomicInt' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkAtomicInt<int>*' -->
-          <parameter type-id='type-id-456' is-artificial='yes'/>
+          <parameter type-id='type-id-457' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -10594,7 +10606,7 @@ 
         <!-- void vtkAtomicInt<int>::vtkAtomicInt(int) -->
         <function-decl name='vtkAtomicInt' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkAtomicInt<int>*' -->
-          <parameter type-id='type-id-456' is-artificial='yes'/>
+          <parameter type-id='type-id-457' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -10605,45 +10617,45 @@ 
         <!-- int vtkAtomicInt<int>::operator int() -->
         <function-decl name='operator int' mangled-name='_ZNK12vtkAtomicIntIiEcviEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='363' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkAtomicInt<int>*' -->
-          <parameter type-id='type-id-457' is-artificial='yes'/>
+          <parameter type-id='type-id-458' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- const detail::vtkAtomicIntImpl<int> -->
-    <qualified-type-def type-id='type-id-455' const='yes' id='type-id-458'/>
+    <qualified-type-def type-id='type-id-456' const='yes' id='type-id-459'/>
     <!-- const detail::vtkAtomicIntImpl<int>* -->
-    <pointer-type-def type-id='type-id-458' size-in-bits='64' id='type-id-459'/>
+    <pointer-type-def type-id='type-id-459' size-in-bits='64' id='type-id-460'/>
     <!-- const vtkAtomicInt<int> -->
-    <qualified-type-def type-id='type-id-454' const='yes' id='type-id-460'/>
+    <qualified-type-def type-id='type-id-455' const='yes' id='type-id-461'/>
     <!-- const vtkAtomicInt<int>* -->
-    <pointer-type-def type-id='type-id-460' size-in-bits='64' id='type-id-457'/>
+    <pointer-type-def type-id='type-id-461' size-in-bits='64' id='type-id-458'/>
     <!-- const vtkStructuredGridLIC2D -->
-    <qualified-type-def type-id='type-id-448' const='yes' id='type-id-461'/>
+    <qualified-type-def type-id='type-id-449' const='yes' id='type-id-462'/>
     <!-- const vtkStructuredGridLIC2D& -->
-    <reference-type-def kind='lvalue' type-id='type-id-461' size-in-bits='64' id='type-id-451'/>
+    <reference-type-def kind='lvalue' type-id='type-id-462' size-in-bits='64' id='type-id-452'/>
     <!-- const vtkStructuredGridLIC2D* -->
-    <pointer-type-def type-id='type-id-461' size-in-bits='64' id='type-id-453'/>
+    <pointer-type-def type-id='type-id-462' size-in-bits='64' id='type-id-454'/>
     <!-- detail::vtkAtomicIntImpl<int>* -->
-    <pointer-type-def type-id='type-id-455' size-in-bits='64' id='type-id-462'/>
+    <pointer-type-def type-id='type-id-456' size-in-bits='64' id='type-id-463'/>
     <!-- vtkAtomicInt<int>* -->
-    <pointer-type-def type-id='type-id-454' size-in-bits='64' id='type-id-456'/>
+    <pointer-type-def type-id='type-id-455' size-in-bits='64' id='type-id-457'/>
     <!-- vtkFrameBufferObject* -->
-    <pointer-type-def type-id='type-id-463' size-in-bits='64' id='type-id-464'/>
+    <pointer-type-def type-id='type-id-464' size-in-bits='64' id='type-id-465'/>
     <!-- vtkPoints* -->
-    <pointer-type-def type-id='type-id-465' size-in-bits='64' id='type-id-466'/>
+    <pointer-type-def type-id='type-id-466' size-in-bits='64' id='type-id-467'/>
     <!-- vtkStructuredGrid* -->
-    <pointer-type-def type-id='type-id-467' size-in-bits='64' id='type-id-452'/>
+    <pointer-type-def type-id='type-id-468' size-in-bits='64' id='type-id-453'/>
     <!-- vtkStructuredGridLIC2D* -->
-    <pointer-type-def type-id='type-id-448' size-in-bits='64' id='type-id-450'/>
+    <pointer-type-def type-id='type-id-449' size-in-bits='64' id='type-id-451'/>
     <!-- class vtkFrameBufferObject -->
-    <class-decl name='vtkFrameBufferObject' visibility='default' is-declaration-only='yes' id='type-id-463'>
+    <class-decl name='vtkFrameBufferObject' visibility='default' is-declaration-only='yes' id='type-id-464'>
       <member-function access='private'>
         <!-- void vtkFrameBufferObject::SetActiveBuffer(unsigned int) -->
         <function-decl name='SetActiveBuffer' mangled-name='_ZN20vtkFrameBufferObject15SetActiveBufferEj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkFrameBufferObject*' -->
-          <parameter type-id='type-id-464' is-artificial='yes'/>
+          <parameter type-id='type-id-465' is-artificial='yes'/>
           <!-- parameter of type 'unsigned int' -->
           <parameter type-id='type-id-13'/>
           <!-- void -->
@@ -10652,19 +10664,19 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkPoints -->
-    <class-decl name='vtkPoints' visibility='default' is-declaration-only='yes' id='type-id-465'>
+    <class-decl name='vtkPoints' visibility='default' is-declaration-only='yes' id='type-id-466'>
       <member-function access='private'>
         <!-- vtkDataArray* vtkPoints::GetData() -->
         <function-decl name='GetData' mangled-name='_ZN9vtkPoints7GetDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkPoints.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPoints*' -->
-          <parameter type-id='type-id-466' is-artificial='yes'/>
+          <parameter type-id='type-id-467' is-artificial='yes'/>
           <!-- vtkDataArray* -->
           <return type-id='type-id-225'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkStructuredExtent -->
-    <class-decl name='vtkStructuredExtent' visibility='default' is-declaration-only='yes' id='type-id-468'>
+    <class-decl name='vtkStructuredExtent' visibility='default' is-declaration-only='yes' id='type-id-469'>
       <member-function access='private' static='yes'>
         <!-- void vtkStructuredExtent::GetDimensions(int*) -->
         <function-decl name='GetDimensions' mangled-name='_ZN19vtkStructuredExtent13GetDimensionsEPKiPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkStructuredExtent.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10678,19 +10690,19 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkStructuredGrid -->
-    <class-decl name='vtkStructuredGrid' visibility='default' is-declaration-only='yes' id='type-id-467'>
+    <class-decl name='vtkStructuredGrid' visibility='default' is-declaration-only='yes' id='type-id-468'>
       <member-function access='private' static='yes'>
         <!-- vtkStructuredGrid* vtkStructuredGrid::SafeDownCast() -->
         <function-decl name='SafeDownCast' mangled-name='_ZN17vtkStructuredGrid12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkStructuredGrid.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-41'/>
           <!-- vtkStructuredGrid* -->
-          <return type-id='type-id-452'/>
+          <return type-id='type-id-453'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkStructuredGridAlgorithm -->
-    <class-decl name='vtkStructuredGridAlgorithm' visibility='default' is-declaration-only='yes' id='type-id-449'>
+    <class-decl name='vtkStructuredGridAlgorithm' visibility='default' is-declaration-only='yes' id='type-id-450'>
       <member-function access='private' static='yes'>
         <!-- int vtkStructuredGridAlgorithm::IsTypeOf() -->
         <function-decl name='IsTypeOf' mangled-name='_ZN26vtkStructuredGridAlgorithm8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/ExecutionModel/vtkStructuredGridAlgorithm.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10704,18 +10716,18 @@ 
     <!-- namespace detail -->
     <namespace-decl name='detail'>
       <!-- class detail::vtkAtomicIntImpl<int> -->
-      <class-decl name='vtkAtomicIntImpl&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='85' column='1' id='type-id-455'>
+      <class-decl name='vtkAtomicIntImpl&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='85' column='1' id='type-id-456'>
         <data-member access='protected' layout-offset-in-bits='0'>
           <!-- vtkTypeInt32 detail::vtkAtomicIntImpl<int>::Value -->
-          <var-decl name='Value' type-id='type-id-447' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='182' column='1'/>
+          <var-decl name='Value' type-id='type-id-448' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='182' column='1'/>
         </data-member>
         <member-function access='private'>
           <!-- vtkTypeInt32 detail::vtkAtomicIntImpl<int>::load() -->
           <function-decl name='load' mangled-name='_ZNK6detail16vtkAtomicIntImplIiE4loadEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const detail::vtkAtomicIntImpl<int>*' -->
-            <parameter type-id='type-id-459' is-artificial='yes'/>
+            <parameter type-id='type-id-460' is-artificial='yes'/>
             <!-- typedef vtkTypeInt32 -->
-            <return type-id='type-id-447'/>
+            <return type-id='type-id-448'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -10723,47 +10735,47 @@ 
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-429' size-in-bits='64' id='type-id-469'/>
+    <reference-type-def kind='lvalue' type-id='type-id-430' size-in-bits='64' id='type-id-470'/>
     <!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >* -->
-    <pointer-type-def type-id='type-id-429' size-in-bits='64' id='type-id-439'/>
+    <pointer-type-def type-id='type-id-430' size-in-bits='64' id='type-id-440'/>
     <!-- const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
-    <qualified-type-def type-id='type-id-429' const='yes' id='type-id-470'/>
+    <qualified-type-def type-id='type-id-430' const='yes' id='type-id-471'/>
     <!-- const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-470' size-in-bits='64' id='type-id-471'/>
+    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-472'/>
     <!-- const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >* -->
-    <pointer-type-def type-id='type-id-470' size-in-bits='64' id='type-id-441'/>
+    <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-442'/>
     <!-- const ptrdiff_t -->
-    <qualified-type-def type-id='type-id-105' const='yes' id='type-id-472'/>
+    <qualified-type-def type-id='type-id-105' const='yes' id='type-id-473'/>
     <!-- const ptrdiff_t& -->
-    <reference-type-def kind='lvalue' type-id='type-id-472' size-in-bits='64' id='type-id-473'/>
+    <reference-type-def kind='lvalue' type-id='type-id-473' size-in-bits='64' id='type-id-474'/>
     <!-- const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
-    <qualified-type-def type-id='type-id-282' const='yes' id='type-id-474'/>
+    <qualified-type-def type-id='type-id-283' const='yes' id='type-id-475'/>
     <!-- const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-474' size-in-bits='64' id='type-id-475'/>
+    <reference-type-def kind='lvalue' type-id='type-id-475' size-in-bits='64' id='type-id-476'/>
     <!-- const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>* -->
-    <pointer-type-def type-id='type-id-474' size-in-bits='64' id='type-id-284'/>
+    <pointer-type-def type-id='type-id-475' size-in-bits='64' id='type-id-285'/>
     <!-- const vtkSurfaceLICComposite -->
-    <qualified-type-def type-id='type-id-476' const='yes' id='type-id-477'/>
+    <qualified-type-def type-id='type-id-477' const='yes' id='type-id-478'/>
     <!-- const vtkSurfaceLICComposite& -->
-    <reference-type-def kind='lvalue' type-id='type-id-477' size-in-bits='64' id='type-id-478'/>
+    <reference-type-def kind='lvalue' type-id='type-id-478' size-in-bits='64' id='type-id-479'/>
     <!-- const vtkSurfaceLICComposite* -->
-    <pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-479'/>
+    <pointer-type-def type-id='type-id-478' size-in-bits='64' id='type-id-480'/>
     <!-- float* const -->
-    <qualified-type-def type-id='type-id-55' const='yes' id='type-id-480'/>
+    <qualified-type-def type-id='type-id-55' const='yes' id='type-id-481'/>
     <!-- float* const& -->
-    <reference-type-def kind='lvalue' type-id='type-id-480' size-in-bits='64' id='type-id-440'/>
+    <reference-type-def kind='lvalue' type-id='type-id-481' size-in-bits='64' id='type-id-441'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-282' size-in-bits='64' id='type-id-285'/>
+    <reference-type-def kind='lvalue' type-id='type-id-283' size-in-bits='64' id='type-id-286'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>* -->
-    <pointer-type-def type-id='type-id-282' size-in-bits='64' id='type-id-283'/>
+    <pointer-type-def type-id='type-id-283' size-in-bits='64' id='type-id-284'/>
     <!-- vtkSurfaceLICComposite* -->
-    <pointer-type-def type-id='type-id-476' size-in-bits='64' id='type-id-481'/>
+    <pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-482'/>
     <!-- vtkTextureObject*& -->
-    <reference-type-def kind='lvalue' type-id='type-id-316' size-in-bits='64' id='type-id-482'/>
+    <reference-type-def kind='lvalue' type-id='type-id-317' size-in-bits='64' id='type-id-483'/>
     <!-- namespace std -->
     <namespace-decl name='std'>
       <!-- struct std::__iter_swap<true> -->
-      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' id='type-id-483'>
+      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' id='type-id-484'>
         <member-function access='public' static='yes'>
           <!-- void std::__iter_swap<true>::iter_swap<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='iter_swap&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10777,19 +10789,19 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false> -->
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-484'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-485'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false> -->
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-485'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-486'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10801,7 +10813,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__miter_base<float*, false> -->
-      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-486'>
+      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-487'>
         <member-function access='public' static='yes'>
           <!-- float* std::__miter_base<float*, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10813,19 +10825,19 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false> -->
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-487'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-488'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- struct std::__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false> -->
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-488'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-489'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>::__b() -->
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10837,14 +10849,14 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__copy_move<false, false, std::random_access_iterator_tag> -->
-      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' id='type-id-489'>
+      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' id='type-id-490'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move<false, false, std::random_access_iterator_tag>::__copy_m<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='__copy_m&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -10866,7 +10878,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__copy_move_backward<false, false, std::random_access_iterator_tag> -->
-      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' id='type-id-490'>
+      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' id='type-id-491'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move_backward<false, false, std::random_access_iterator_tag>::__copy_move_b<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='__copy_move_b&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10882,14 +10894,14 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__uninitialized_copy<false> -->
-      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' id='type-id-491'>
+      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' id='type-id-492'>
         <member-function access='public' static='yes'>
           <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy<false>::uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
           <function-decl name='uninitialized_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -10924,7 +10936,7 @@ 
         </member-function>
       </class-decl>
       <!-- struct std::__uninitialized_copy<true> -->
-      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' id='type-id-492'>
+      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' id='type-id-493'>
         <member-function access='public' static='yes'>
           <!-- float* std::__uninitialized_copy<true>::uninitialized_copy<float*, float*>(float*, float*) -->
           <function-decl name='uninitialized_copy&lt;float*, float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -11078,9 +11090,9 @@ 
       <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move_a<false, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
       <function-decl name='__copy_move_a&lt;false, std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11111,9 +11123,9 @@ 
       <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move_a2<false, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
       <function-decl name='__copy_move_a2&lt;false, std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11144,9 +11156,9 @@ 
       <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
       <function-decl name='copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='458' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11236,7 +11248,7 @@ 
         <!-- parameter of type 'float*' -->
         <parameter type-id='type-id-55'/>
         <!-- parameter of type 'const float&' -->
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
@@ -11247,16 +11259,16 @@ 
         <!-- parameter of type 'float*' -->
         <parameter type-id='type-id-55'/>
         <!-- parameter of type 'const float&' -->
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
       <!-- bool std::operator==<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
       <function-decl name='operator==&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
         <!-- bool -->
         <return type-id='type-id-1'/>
       </function-decl>
@@ -11272,9 +11284,9 @@ 
       <!-- bool std::operator!=<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
       <function-decl name='operator!=&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
         <!-- bool -->
         <return type-id='type-id-1'/>
       </function-decl>
@@ -11299,9 +11311,9 @@ 
       <!-- ptrdiff_t std::operator&#45;<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
       <function-decl name='operator-&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
         <!-- typedef ptrdiff_t -->
         <return type-id='type-id-105'/>
       </function-decl>
@@ -11363,11 +11375,11 @@ 
       <!-- ptrdiff_t std::__distance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::random_access_iterator_tag) -->
       <function-decl name='__distance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::random_access_iterator_tag' -->
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <!-- typedef ptrdiff_t -->
         <return type-id='type-id-105'/>
       </function-decl>
@@ -11378,16 +11390,16 @@ 
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- parameter of type 'struct std::random_access_iterator_tag' -->
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <!-- typedef ptrdiff_t -->
         <return type-id='type-id-105'/>
       </function-decl>
       <!-- ptrdiff_t std::distance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>) -->
       <function-decl name='distance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- typedef ptrdiff_t -->
         <return type-id='type-id-105'/>
       </function-decl>
@@ -11403,11 +11415,11 @@ 
       <!-- void std::__advance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, long int>(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, long int, std::random_access_iterator_tag) -->
       <function-decl name='__advance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, long int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-285'/>
+        <parameter type-id='type-id-286'/>
         <!-- parameter of type 'long int' -->
         <parameter type-id='type-id-20'/>
         <!-- parameter of type 'struct std::random_access_iterator_tag' -->
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
@@ -11418,14 +11430,14 @@ 
         <!-- parameter of type 'long int' -->
         <parameter type-id='type-id-20'/>
         <!-- parameter of type 'struct std::random_access_iterator_tag' -->
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <!-- void -->
         <return type-id='type-id-30'/>
       </function-decl>
       <!-- void std::advance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, long int>(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, long int) -->
       <function-decl name='advance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, long int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-285'/>
+        <parameter type-id='type-id-286'/>
         <!-- parameter of type 'long int' -->
         <parameter type-id='type-id-20'/>
         <!-- void -->
@@ -11443,16 +11455,16 @@ 
       <!-- std::random_access_iterator_tag std::__iterator_category<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
       <function-decl name='__iterator_category&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
         <!-- struct std::random_access_iterator_tag -->
-        <return type-id='type-id-427'/>
+        <return type-id='type-id-428'/>
       </function-decl>
       <!-- std::random_access_iterator_tag std::__iterator_category<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&) -->
       <function-decl name='__iterator_category&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&' -->
         <parameter type-id='type-id-135'/>
         <!-- struct std::random_access_iterator_tag -->
-        <return type-id='type-id-427'/>
+        <return type-id='type-id-428'/>
       </function-decl>
       <!-- float* std::uninitialized_copy<float*, float*>(float*, float*, float*) -->
       <function-decl name='uninitialized_copy&lt;float*, float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -11468,9 +11480,9 @@ 
       <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
       <function-decl name='uninitialized_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11496,16 +11508,16 @@ 
         <!-- parameter of type 'float*' -->
         <parameter type-id='type-id-55'/>
         <!-- parameter of type 'std::allocator<float>&' -->
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-395'/>
         <!-- float* -->
         <return type-id='type-id-55'/>
       </function-decl>
       <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy_a<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent>&) -->
       <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- parameter of type 'std::allocator<vtkPixelExtent>&' -->
@@ -11548,7 +11560,7 @@ 
         <!-- parameter of type 'float*' -->
         <parameter type-id='type-id-55'/>
         <!-- parameter of type 'std::allocator<float>&' -->
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-395'/>
         <!-- float* -->
         <return type-id='type-id-55'/>
       </function-decl>
@@ -11561,7 +11573,7 @@ 
         <!-- parameter of type 'float*' -->
         <parameter type-id='type-id-55' name='__result' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
         <!-- parameter of type 'std::allocator<float>&' -->
-        <parameter type-id='type-id-394' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
+        <parameter type-id='type-id-395' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
         <!-- float* -->
         <return type-id='type-id-55'/>
       </function-decl>
@@ -11581,9 +11593,9 @@ 
       <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy_move<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent>&) -->
       <function-decl name='__uninitialized_copy_move&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::allocator&lt;vtkPixelExtent&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
@@ -11619,9 +11631,9 @@ 
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
         <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
         <parameter type-id='type-id-133'/>
         <!-- parameter of type 'std::allocator<vtkPixelExtent>&' -->
@@ -11648,7 +11660,7 @@ 
       </function-decl>
     </namespace-decl>
     <!-- class vtkSurfaceLICComposite -->
-    <class-decl name='vtkSurfaceLICComposite' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='38' column='1' is-declaration-only='yes' id='type-id-476'>
+    <class-decl name='vtkSurfaceLICComposite' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='38' column='1' is-declaration-only='yes' id='type-id-477'>
       <!-- class vtkObject -->
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-268'/>
       <data-member access='protected' layout-offset-in-bits='384'>
@@ -11711,7 +11723,7 @@ 
         <!-- vtkSurfaceLICComposite::vtkSurfaceLICComposite() -->
         <function-decl name='vtkSurfaceLICComposite' mangled-name='_ZN22vtkSurfaceLICCompositeC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICCompositeC1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -11720,9 +11732,9 @@ 
         <!-- vtkSurfaceLICComposite::vtkSurfaceLICComposite(const vtkSurfaceLICComposite&) -->
         <function-decl name='vtkSurfaceLICComposite' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSurfaceLICComposite&' -->
-          <parameter type-id='type-id-478'/>
+          <parameter type-id='type-id-479'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -11740,7 +11752,7 @@ 
         <!-- float vtkSurfaceLICComposite::GetFudgeFactor(int*) -->
         <function-decl name='GetFudgeFactor' mangled-name='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'int*' -->
           <parameter type-id='type-id-47'/>
           <!-- float -->
@@ -11751,7 +11763,7 @@ 
         <!-- void vtkSurfaceLICComposite::GetPixelBounds(float*, int, vtkPixelExtent&) -->
         <function-decl name='GetPixelBounds' mangled-name='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'float*' -->
           <parameter type-id='type-id-55'/>
           <!-- parameter of type 'int' -->
@@ -11766,7 +11778,7 @@ 
         <!-- float vtkSurfaceLICComposite::VectorMax(const vtkPixelExtent&, float*) -->
         <function-decl name='VectorMax' mangled-name='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'const vtkPixelExtent&' -->
           <parameter type-id='type-id-45'/>
           <!-- parameter of type 'float*' -->
@@ -11779,20 +11791,20 @@ 
         <!-- vtkSurfaceLICComposite* vtkSurfaceLICComposite::New() -->
         <function-decl name='New' mangled-name='_ZN22vtkSurfaceLICComposite3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite3NewEv'>
           <!-- vtkSurfaceLICComposite* -->
-          <return type-id='type-id-481'/>
+          <return type-id='type-id-482'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <!-- int vtkSurfaceLICComposite::VectorMax(const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*, std::vector<float, std::allocator<float> >&) -->
         <function-decl name='VectorMax' mangled-name='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
           <parameter type-id='type-id-166'/>
           <!-- parameter of type 'float*' -->
           <parameter type-id='type-id-55'/>
           <!-- parameter of type 'std::vector<float, std::allocator<float> >&' -->
-          <parameter type-id='type-id-408'/>
+          <parameter type-id='type-id-409'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -11801,7 +11813,7 @@ 
         <!-- void vtkSurfaceLICComposite::Initialize(const vtkPixelExtent&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, int, double, int, int, int, int) -->
         <function-decl name='Initialize' mangled-name='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'const vtkPixelExtent&' -->
           <parameter type-id='type-id-45'/>
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -11837,7 +11849,7 @@ 
         <!-- int vtkSurfaceLICComposite::MakeDecompDisjoint(const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*) -->
         <function-decl name='MakeDecompDisjoint' mangled-name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
           <parameter type-id='type-id-166'/>
           <!-- parameter of type 'std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -11852,7 +11864,7 @@ 
         <!-- int vtkSurfaceLICComposite::AddGuardPixels(const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*) -->
         <function-decl name='AddGuardPixels' mangled-name='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
           <parameter type-id='type-id-166'/>
           <!-- parameter of type 'std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -11869,7 +11881,7 @@ 
         <!-- int vtkSurfaceLICComposite::InitializeCompositeExtents(float*) -->
         <function-decl name='InitializeCompositeExtents' mangled-name='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'float*' -->
           <parameter type-id='type-id-55'/>
           <!-- int -->
@@ -11880,7 +11892,7 @@ 
         <!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& vtkSurfaceLICComposite::GetCompositeExtents() -->
         <function-decl name='GetCompositeExtents' mangled-name='_ZNK22vtkSurfaceLICComposite19GetCompositeExtentsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
           <return type-id='type-id-166'/>
         </function-decl>
@@ -11889,7 +11901,7 @@ 
         <!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& vtkSurfaceLICComposite::GetDisjointGuardExtents() -->
         <function-decl name='GetDisjointGuardExtents' mangled-name='_ZNK22vtkSurfaceLICComposite23GetDisjointGuardExtentsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
           <return type-id='type-id-166'/>
         </function-decl>
@@ -11898,7 +11910,7 @@ 
         <!-- int vtkSurfaceLICComposite::GetStrategy() -->
         <function-decl name='GetStrategy' mangled-name='_ZN22vtkSurfaceLICComposite11GetStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -11907,7 +11919,7 @@ 
         <!-- vtkSurfaceLICComposite::~vtkSurfaceLICComposite(int) -->
         <function-decl name='~vtkSurfaceLICComposite' mangled-name='_ZN22vtkSurfaceLICCompositeD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICCompositeD1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -11918,7 +11930,7 @@ 
         <!-- const char* vtkSurfaceLICComposite::GetClassNameInternal() -->
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK22vtkSurfaceLICComposite20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <!-- const char* -->
           <return type-id='type-id-64'/>
         </function-decl>
@@ -11927,7 +11939,7 @@ 
         <!-- int vtkSurfaceLICComposite::IsA(const char*) -->
         <function-decl name='IsA' mangled-name='_ZN22vtkSurfaceLICComposite3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- int -->
@@ -11938,7 +11950,7 @@ 
         <!-- void vtkSurfaceLICComposite::PrintSelf(std::ostream&, vtkIndent) -->
         <function-decl name='PrintSelf' mangled-name='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'std::ostream&' -->
           <parameter type-id='type-id-67'/>
           <!-- parameter of type 'class vtkIndent' -->
@@ -11951,7 +11963,7 @@ 
         <!-- vtkObjectBase* vtkSurfaceLICComposite::NewInstanceInternal() -->
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK22vtkSurfaceLICComposite19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-41'/>
         </function-decl>
@@ -11960,7 +11972,7 @@ 
         <!-- void vtkSurfaceLICComposite::SetContext(vtkOpenGLRenderWindow*) -->
         <function-decl name='SetContext' mangled-name='_ZN22vtkSurfaceLICComposite10SetContextEP21vtkOpenGLRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLRenderWindow*' -->
           <parameter type-id='type-id-243'/>
           <!-- void -->
@@ -11971,7 +11983,7 @@ 
         <!-- vtkOpenGLRenderWindow* vtkSurfaceLICComposite::GetContext() -->
         <function-decl name='GetContext' mangled-name='_ZN22vtkSurfaceLICComposite10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow* -->
           <return type-id='type-id-243'/>
         </function-decl>
@@ -11980,9 +11992,9 @@ 
         <!-- void vtkSurfaceLICComposite::SetCommunicator(vtkPainterCommunicator*) -->
         <function-decl name='SetCommunicator' mangled-name='_ZN22vtkSurfaceLICComposite15SetCommunicatorEP22vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320'/>
+          <parameter type-id='type-id-321'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -11991,7 +12003,7 @@ 
         <!-- void vtkSurfaceLICComposite::RestoreDefaultCommunicator() -->
         <function-decl name='RestoreDefaultCommunicator' mangled-name='_ZN22vtkSurfaceLICComposite26RestoreDefaultCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12000,7 +12012,7 @@ 
         <!-- int vtkSurfaceLICComposite::BuildProgram(float*) -->
         <function-decl name='BuildProgram' mangled-name='_ZN22vtkSurfaceLICComposite12BuildProgramEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'float*' -->
           <parameter type-id='type-id-55'/>
           <!-- int -->
@@ -12011,7 +12023,7 @@ 
         <!-- int vtkSurfaceLICComposite::Gather(void*, int, int, vtkTextureObject*&) -->
         <function-decl name='Gather' mangled-name='_ZN22vtkSurfaceLICComposite6GatherEPviiRP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'void*' -->
           <parameter type-id='type-id-14'/>
           <!-- parameter of type 'int' -->
@@ -12019,7 +12031,7 @@ 
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'vtkTextureObject*&' -->
-          <parameter type-id='type-id-482'/>
+          <parameter type-id='type-id-483'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -12028,7 +12040,7 @@ 
         <!-- int vtkSurfaceLICComposite::Scatter(void*, int, int, vtkTextureObject*&) -->
         <function-decl name='Scatter' mangled-name='_ZN22vtkSurfaceLICComposite7ScatterEPviiRP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <!-- parameter of type 'void*' -->
           <parameter type-id='type-id-14'/>
           <!-- parameter of type 'int' -->
@@ -12036,7 +12048,7 @@ 
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'vtkTextureObject*&' -->
-          <parameter type-id='type-id-482'/>
+          <parameter type-id='type-id-483'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -12047,9 +12059,9 @@ 
       <!-- ptrdiff_t __gnu_cxx::operator&#45;<float*, std::vector<float, std::allocator<float> > >(const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&, const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&) -->
       <function-decl name='operator-&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&' -->
-        <parameter type-id='type-id-471'/>
+        <parameter type-id='type-id-472'/>
         <!-- parameter of type 'const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&' -->
-        <parameter type-id='type-id-471'/>
+        <parameter type-id='type-id-472'/>
         <!-- typedef ptrdiff_t -->
         <return type-id='type-id-105'/>
       </function-decl>
@@ -12057,7 +12069,7 @@ 
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- class vtkTimeStamp -->
-    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-493'>
+    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-494'>
       <data-member access='private' layout-offset-in-bits='0'>
         <!-- unsigned long int vtkTimeStamp::ModifiedTime -->
         <var-decl name='ModifiedTime' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='63' column='1'/>
@@ -12066,7 +12078,7 @@ 
         <!-- vtkTimeStamp::vtkTimeStamp() -->
         <function-decl name='vtkTimeStamp' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkTimeStamp*' -->
-          <parameter type-id='type-id-494' is-artificial='yes'/>
+          <parameter type-id='type-id-495' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12075,27 +12087,27 @@ 
         <!-- bool vtkTimeStamp::operator<(vtkTimeStamp&) -->
         <function-decl name='operator&lt;' mangled-name='_ZN12vtkTimeStampltERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkTimeStamp*' -->
-          <parameter type-id='type-id-494' is-artificial='yes'/>
+          <parameter type-id='type-id-495' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimeStamp&' -->
-          <parameter type-id='type-id-495'/>
+          <parameter type-id='type-id-496'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSurfaceLICDefaultPainter -->
-    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-496'>
+    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-497'>
       <!-- class vtkDefaultPainter -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-497'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-498'/>
       <data-member access='protected' layout-offset-in-bits='1664'>
         <!-- vtkSurfaceLICPainter* vtkSurfaceLICDefaultPainter::SurfaceLICPainter -->
-        <var-decl name='SurfaceLICPainter' type-id='type-id-498' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
+        <var-decl name='SurfaceLICPainter' type-id='type-id-499' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
       </data-member>
       <member-function access='protected' constructor='yes'>
         <!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter() -->
         <function-decl name='vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterC2Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12104,9 +12116,9 @@ 
         <!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&) -->
         <function-decl name='vtkSurfaceLICDefaultPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSurfaceLICDefaultPainter&' -->
-          <parameter type-id='type-id-500'/>
+          <parameter type-id='type-id-501'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12124,9 +12136,9 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::SetSurfaceLICPainter(vtkSurfaceLICPainter*) -->
         <function-decl name='SetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498'/>
+          <parameter type-id='type-id-499'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12135,14 +12147,14 @@ 
         <!-- vtkSurfaceLICDefaultPainter* vtkSurfaceLICDefaultPainter::New() -->
         <function-decl name='New' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter3NewEv'>
           <!-- vtkSurfaceLICDefaultPainter* -->
-          <return type-id='type-id-499'/>
+          <return type-id='type-id-500'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <!-- vtkSurfaceLICDefaultPainter::~vtkSurfaceLICDefaultPainter(int) -->
         <function-decl name='~vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterD1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- artificial parameter of type 'int' -->
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <!-- void -->
@@ -12153,7 +12165,7 @@ 
         <!-- const char* vtkSurfaceLICDefaultPainter::GetClassNameInternal() -->
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-502' is-artificial='yes'/>
           <!-- const char* -->
           <return type-id='type-id-64'/>
         </function-decl>
@@ -12162,7 +12174,7 @@ 
         <!-- int vtkSurfaceLICDefaultPainter::IsA(const char*) -->
         <function-decl name='IsA' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- int -->
@@ -12173,7 +12185,7 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::PrintSelf(std::ostream&, vtkIndent) -->
         <function-decl name='PrintSelf' mangled-name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- parameter of type 'std::ostream&' -->
           <parameter type-id='type-id-67'/>
           <!-- parameter of type 'class vtkIndent' -->
@@ -12186,9 +12198,9 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::ReportReferences(vtkGarbageCollector*) -->
         <function-decl name='ReportReferences' mangled-name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- parameter of type 'vtkGarbageCollector*' -->
-          <parameter type-id='type-id-502'/>
+          <parameter type-id='type-id-503'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12197,7 +12209,7 @@ 
         <!-- vtkObjectBase* vtkSurfaceLICDefaultPainter::NewInstanceInternal() -->
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-502' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-41'/>
         </function-decl>
@@ -12206,7 +12218,7 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::UpdateBounds(double*) -->
         <function-decl name='UpdateBounds' mangled-name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-186'/>
           <!-- void -->
@@ -12217,7 +12229,7 @@ 
         <!-- void vtkSurfaceLICDefaultPainter::BuildPainterChain() -->
         <function-decl name='BuildPainterChain' mangled-name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12226,34 +12238,34 @@ 
         <!-- vtkSurfaceLICPainter* vtkSurfaceLICDefaultPainter::GetSurfaceLICPainter() -->
         <function-decl name='GetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20GetSurfaceLICPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <!-- vtkSurfaceLICPainter* -->
-          <return type-id='type-id-498'/>
+          <return type-id='type-id-499'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSurfaceLICPainter -->
-    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-503'>
+    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-504'>
       <!-- class vtkPainter -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-504'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-505'/>
       <member-type access='protected'>
         <!-- class vtkSurfaceLICPainter::vtkInternals -->
-        <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-505'>
+        <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-506'>
           <data-member access='private' layout-offset-in-bits='0'>
             <!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSurfaceLICPainter::vtkInternals::LightMonitor[8] -->
-            <var-decl name='LightMonitor' type-id='type-id-506' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
+            <var-decl name='LightMonitor' type-id='type-id-507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='512'>
             <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSurfaceLICPainter::vtkInternals::ViewMonitor -->
-            <var-decl name='ViewMonitor' type-id='type-id-507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
+            <var-decl name='ViewMonitor' type-id='type-id-508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='576'>
             <!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSurfaceLICPainter::vtkInternals::BGMonitor -->
-            <var-decl name='BGMonitor' type-id='type-id-508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
+            <var-decl name='BGMonitor' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='640'>
             <!-- vtkWeakPointer<vtkOpenGLRenderWindow> vtkSurfaceLICPainter::vtkInternals::Context -->
-            <var-decl name='Context' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
+            <var-decl name='Context' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='704'>
             <!-- bool vtkSurfaceLICPainter::vtkInternals::GLSupport -->
@@ -12261,7 +12273,7 @@ 
           </data-member>
           <data-member access='private' layout-offset-in-bits='736'>
             <!-- int vtkSurfaceLICPainter::vtkInternals::Viewsize[2] -->
-            <var-decl name='Viewsize' type-id='type-id-310' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='832' column='1'/>
+            <var-decl name='Viewsize' type-id='type-id-311' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='832' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='832'>
             <!-- long long int vtkSurfaceLICPainter::vtkInternals::LastInputDataSetMTime -->
@@ -12313,87 +12325,87 @@ 
           </data-member>
           <data-member access='private' layout-offset-in-bits='1856'>
             <!-- vtkPainterCommunicator* vtkSurfaceLICPainter::vtkInternals::Communicator -->
-            <var-decl name='Communicator' type-id='type-id-320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='848' column='1'/>
+            <var-decl name='Communicator' type-id='type-id-321' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='848' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='1920'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::DepthImage -->
-            <var-decl name='DepthImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
+            <var-decl name='DepthImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='1984'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::GeometryImage -->
-            <var-decl name='GeometryImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
+            <var-decl name='GeometryImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2048'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::VectorImage -->
-            <var-decl name='VectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
+            <var-decl name='VectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2112'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::CompositeVectorImage -->
-            <var-decl name='CompositeVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
+            <var-decl name='CompositeVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2176'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::MaskVectorImage -->
-            <var-decl name='MaskVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
+            <var-decl name='MaskVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2240'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::CompositeMaskVectorImage -->
-            <var-decl name='CompositeMaskVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
+            <var-decl name='CompositeMaskVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2304'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::NoiseImage -->
-            <var-decl name='NoiseImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
+            <var-decl name='NoiseImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2368'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::LICImage -->
-            <var-decl name='LICImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
+            <var-decl name='LICImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2432'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::RGBColorImage -->
-            <var-decl name='RGBColorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
+            <var-decl name='RGBColorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2496'>
             <!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::HSLColorImage -->
-            <var-decl name='HSLColorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
+            <var-decl name='HSLColorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2560'>
             <!-- vtkSmartPointer<vtkImageData> vtkSurfaceLICPainter::vtkInternals::Noise -->
-            <var-decl name='Noise' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
+            <var-decl name='Noise' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2624'>
             <!-- vtkSmartPointer<vtkFrameBufferObject2> vtkSurfaceLICPainter::vtkInternals::FBO -->
-            <var-decl name='FBO' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
+            <var-decl name='FBO' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2688'>
             <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::RenderGeometryPass -->
-            <var-decl name='RenderGeometryPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
+            <var-decl name='RenderGeometryPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2752'>
             <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::ColorPass -->
-            <var-decl name='ColorPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
+            <var-decl name='ColorPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2816'>
             <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::ColorEnhancePass -->
-            <var-decl name='ColorEnhancePass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
+            <var-decl name='ColorEnhancePass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2880'>
             <!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::CopyPass -->
-            <var-decl name='CopyPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
+            <var-decl name='CopyPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2944'>
             <!-- vtkSmartPointer<vtkLightingHelper> vtkSurfaceLICPainter::vtkInternals::LightingHelper -->
-            <var-decl name='LightingHelper' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
+            <var-decl name='LightingHelper' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3008'>
             <!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSurfaceLICPainter::vtkInternals::ColorMaterialHelper -->
-            <var-decl name='ColorMaterialHelper' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
+            <var-decl name='ColorMaterialHelper' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3072'>
             <!-- vtkSmartPointer<vtkSurfaceLICComposite> vtkSurfaceLICPainter::vtkInternals::Compositor -->
-            <var-decl name='Compositor' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
+            <var-decl name='Compositor' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3136'>
             <!-- vtkSmartPointer<vtkLineIntegralConvolution2D> vtkSurfaceLICPainter::vtkInternals::LICer -->
-            <var-decl name='LICer' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
+            <var-decl name='LICer' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3200'>
             <!-- int vtkSurfaceLICPainter::vtkInternals::FieldAssociation -->
@@ -12405,7 +12417,7 @@ 
           </data-member>
           <data-member access='private' layout-offset-in-bits='3264'>
             <!-- std::string vtkSurfaceLICPainter::vtkInternals::FieldName -->
-            <var-decl name='FieldName' type-id='type-id-431' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='880' column='1'/>
+            <var-decl name='FieldName' type-id='type-id-432' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='880' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3328'>
             <!-- bool vtkSurfaceLICPainter::vtkInternals::FieldNameSet -->
@@ -12419,7 +12431,7 @@ 
             <!-- vtkSurfaceLICPainter::vtkInternals::vtkInternals() -->
             <function-decl name='vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='888' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- void -->
               <return type-id='type-id-30'/>
             </function-decl>
@@ -12428,7 +12440,7 @@ 
             <!-- vtkSurfaceLICPainter::vtkInternals::~vtkInternals(int) -->
             <function-decl name='~vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='927' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- artificial parameter of type 'int' -->
               <parameter type-id='type-id-17' is-artificial='yes'/>
               <!-- void -->
@@ -12439,7 +12451,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::UpdateAll() -->
             <function-decl name='UpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals9UpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1116' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- void -->
               <return type-id='type-id-30'/>
             </function-decl>
@@ -12448,7 +12460,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::GetPixelBounds(float*, int, vtkPixelExtent&) -->
             <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1474' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'float*' -->
               <parameter type-id='type-id-55'/>
               <!-- parameter of type 'int' -->
@@ -12463,7 +12475,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::ViewportQuadTextureCoords(const vtkPixelExtent&, const vtkPixelExtent&, GLfloat*) -->
             <function-decl name='ViewportQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals25ViewportQuadTextureCoordsERK14vtkPixelExtentS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1146' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'const vtkPixelExtent&' -->
               <parameter type-id='type-id-45'/>
               <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -12478,7 +12490,7 @@ 
             <!-- int vtkSurfaceLICPainter::vtkInternals::idx(int, int) -->
             <function-decl name='idx' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals3idxEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1252' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'int' -->
               <parameter type-id='type-id-17'/>
               <!-- parameter of type 'int' -->
@@ -12491,7 +12503,7 @@ 
             <!-- bool vtkSurfaceLICPainter::vtkInternals::VisibilityTest(double*) -->
             <function-decl name='VisibilityTest' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14VisibilityTestEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1263' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'double*' -->
               <parameter type-id='type-id-186'/>
               <!-- bool -->
@@ -12502,13 +12514,13 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::AllocateDepthTexture(vtkRenderWindow*, int*, vtkSmartPointer<vtkTextureObject>&) -->
             <function-decl name='AllocateDepthTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals20AllocateDepthTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1068' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'vtkRenderWindow*' -->
               <parameter type-id='type-id-35'/>
               <!-- parameter of type 'int*' -->
               <parameter type-id='type-id-47'/>
               <!-- parameter of type 'vtkSmartPointer<vtkTextureObject>&' -->
-              <parameter type-id='type-id-519'/>
+              <parameter type-id='type-id-520'/>
               <!-- void -->
               <return type-id='type-id-30'/>
             </function-decl>
@@ -12517,7 +12529,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::AllocateTextures(vtkRenderWindow*, int*) -->
             <function-decl name='AllocateTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals16AllocateTexturesEP15vtkRenderWindowPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'vtkRenderWindow*' -->
               <parameter type-id='type-id-35'/>
               <!-- parameter of type 'int*' -->
@@ -12530,7 +12542,7 @@ 
             <!-- bool vtkSurfaceLICPainter::vtkInternals::ViewChanged() -->
             <function-decl name='ViewChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals11ViewChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1236' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- bool -->
               <return type-id='type-id-1'/>
             </function-decl>
@@ -12539,7 +12551,7 @@ 
             <!-- bool vtkSurfaceLICPainter::vtkInternals::LightingChanged() -->
             <function-decl name='LightingChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15LightingChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1219' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- bool -->
               <return type-id='type-id-1'/>
             </function-decl>
@@ -12548,9 +12560,9 @@ 
             <!-- bool vtkSurfaceLICPainter::vtkInternals::BackgroundChanged(vtkRenderer*) -->
             <function-decl name='BackgroundChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals17BackgroundChangedEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1244' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'vtkRenderer*' -->
-              <parameter type-id='type-id-520'/>
+              <parameter type-id='type-id-521'/>
               <!-- bool -->
               <return type-id='type-id-1'/>
             </function-decl>
@@ -12559,7 +12571,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::GetPixelBounds(float*, int, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
             <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiRSt5dequeI14vtkPixelExtentSaIS3_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1496' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'float*' -->
               <parameter type-id='type-id-55'/>
               <!-- parameter of type 'int' -->
@@ -12574,7 +12586,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::Updated() -->
             <function-decl name='Updated' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals7UpdatedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1102' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- void -->
               <return type-id='type-id-30'/>
             </function-decl>
@@ -12592,7 +12604,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::ClearGraphicsResources() -->
             <function-decl name='ClearGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals22ClearGraphicsResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='989' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- void -->
               <return type-id='type-id-30'/>
             </function-decl>
@@ -12601,7 +12613,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::ClearTextures() -->
             <function-decl name='ClearTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ClearTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1008' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- void -->
               <return type-id='type-id-30'/>
             </function-decl>
@@ -12610,13 +12622,13 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::AllocateTexture(vtkRenderWindow*, int*, vtkSmartPointer<vtkTextureObject>&, int) -->
             <function-decl name='AllocateTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15AllocateTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1041' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'vtkRenderWindow*' -->
               <parameter type-id='type-id-35'/>
               <!-- parameter of type 'int*' -->
               <parameter type-id='type-id-47'/>
               <!-- parameter of type 'vtkSmartPointer<vtkTextureObject>&' -->
-              <parameter type-id='type-id-519'/>
+              <parameter type-id='type-id-520'/>
               <!-- parameter of type 'int' -->
               <parameter type-id='type-id-17'/>
               <!-- void -->
@@ -12627,7 +12639,7 @@ 
             <!-- bool vtkSurfaceLICPainter::vtkInternals::ProjectBounds(double*, int*, double*, vtkPixelExtent&) -->
             <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEPdPiS1_R14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1299' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'double*' -->
               <parameter type-id='type-id-186'/>
               <!-- parameter of type 'int*' -->
@@ -12644,7 +12656,7 @@ 
             <!-- int vtkSurfaceLICPainter::vtkInternals::ProjectBounds(vtkDataObject*, int*, vtkPixelExtent&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
             <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEP13vtkDataObjectPiR14vtkPixelExtentRSt5dequeIS4_SaIS4_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1390' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'vtkDataObject*' -->
               <parameter type-id='type-id-229'/>
               <!-- parameter of type 'int*' -->
@@ -12661,7 +12673,7 @@ 
             <!-- void vtkSurfaceLICPainter::vtkInternals::RenderQuad(const vtkPixelExtent&, const vtkPixelExtent&, int) -->
             <function-decl name='RenderQuad' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals10RenderQuadERK14vtkPixelExtentS3_i' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64'>
               <!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <!-- parameter of type 'const vtkPixelExtent&' -->
               <parameter type-id='type-id-45'/>
               <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -12676,7 +12688,7 @@ 
       </member-type>
       <member-type access='private'>
         <!-- enum vtkSurfaceLICPainter::__anonymous_enum__ -->
-        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-521'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-522'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
           <enumerator name='ENHANCE_CONTRAST_LIC' value='1'/>
@@ -12686,7 +12698,7 @@ 
       </member-type>
       <member-type access='private'>
         <!-- enum vtkSurfaceLICPainter::__anonymous_enum__1 -->
-        <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-522'>
+        <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-523'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='COMPOSITE_INPLACE' value='0'/>
           <enumerator name='COMPOSITE_INPLACE_DISJOINT' value='1'/>
@@ -12748,7 +12760,7 @@ 
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1792'>
         <!-- double vtkSurfaceLICPainter::MaskColor[3] -->
-        <var-decl name='MaskColor' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
+        <var-decl name='MaskColor' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1984'>
         <!-- int vtkSurfaceLICPainter::ColorMode -->
@@ -12820,13 +12832,13 @@ 
       </data-member>
       <data-member access='protected' layout-offset-in-bits='2816'>
         <!-- vtkSurfaceLICPainter::vtkInternals* vtkSurfaceLICPainter::Internals -->
-        <var-decl name='Internals' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
+        <var-decl name='Internals' type-id='type-id-519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
       </data-member>
       <member-function access='protected' constructor='yes'>
         <!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter() -->
         <function-decl name='vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterC1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12835,9 +12847,9 @@ 
         <!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter(const vtkSurfaceLICPainter&) -->
         <function-decl name='vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSurfaceLICPainter&' -->
-          <parameter type-id='type-id-524'/>
+          <parameter type-id='type-id-525'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -12855,7 +12867,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetInputArrayToProcess(int, int) -->
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'int' -->
@@ -12868,7 +12880,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetEnable(int) -->
         <function-decl name='SetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9SetEnableEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9SetEnableEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -12879,7 +12891,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetCompositeStrategy(int) -->
         <function-decl name='SetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -12890,7 +12902,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNumberOfSteps(int) -->
         <function-decl name='SetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -12901,7 +12913,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetStepSize(double) -->
         <function-decl name='SetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter11SetStepSizeEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -12912,7 +12924,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNormalizeVectors(int) -->
         <function-decl name='SetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -12923,7 +12935,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskThreshold(double) -->
         <function-decl name='SetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -12934,7 +12946,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetEnhancedLIC(int) -->
         <function-decl name='SetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -12945,7 +12957,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetLowLICContrastEnhancementFactor(double) -->
         <function-decl name='SetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -12956,7 +12968,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetHighLICContrastEnhancementFactor(double) -->
         <function-decl name='SetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -12967,7 +12979,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetAntiAlias(int) -->
         <function-decl name='SetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -12978,7 +12990,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskOnSurface(int) -->
         <function-decl name='SetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -12989,7 +13001,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetColorMode(int) -->
         <function-decl name='SetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetColorModeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13000,7 +13012,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetLICIntensity(double) -->
         <function-decl name='SetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13011,7 +13023,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskIntensity(double) -->
         <function-decl name='SetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13022,7 +13034,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMapModeBias(double) -->
         <function-decl name='SetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13033,7 +13045,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetLowColorContrastEnhancementFactor(double) -->
         <function-decl name='SetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1823' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13044,7 +13056,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetHighColorContrastEnhancementFactor(double) -->
         <function-decl name='SetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13055,7 +13067,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaskColor(double*) -->
         <function-decl name='SetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-186'/>
           <!-- void -->
@@ -13066,7 +13078,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetEnhanceContrast(int) -->
         <function-decl name='SetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13077,7 +13089,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToColorLIC() -->
         <function-decl name='NeedToColorLIC' mangled-name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -13086,7 +13098,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToComputeLIC() -->
         <function-decl name='NeedToComputeLIC' mangled-name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -13095,7 +13107,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToGatherVectors() -->
         <function-decl name='NeedToGatherVectors' mangled-name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -13104,7 +13116,7 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToUpdateOutputData() -->
         <function-decl name='NeedToUpdateOutputData' mangled-name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -13113,7 +13125,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetUpdateAll() -->
         <function-decl name='SetUpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13122,7 +13134,7 @@ 
         <!-- void vtkSurfaceLICPainter::ClearTCoords(vtkDataSet*) -->
         <function-decl name='ClearTCoords' mangled-name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataSet*' -->
           <parameter type-id='type-id-231'/>
           <!-- void -->
@@ -13133,7 +13145,7 @@ 
         <!-- bool vtkSurfaceLICPainter::VectorsToTCoords(vtkDataSet*) -->
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataSet*' -->
           <parameter type-id='type-id-231'/>
           <!-- bool -->
@@ -13144,7 +13156,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseDataSet(vtkImageData*) -->
         <function-decl name='SetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-233'/>
           <!-- void -->
@@ -13155,7 +13167,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseGeneratorSeed(int) -->
         <function-decl name='SetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13166,7 +13178,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetImpulseNoiseBackgroundValue(double) -->
         <function-decl name='SetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1712' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13177,7 +13189,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetImpulseNoiseProbability(double) -->
         <function-decl name='SetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13188,7 +13200,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNumberOfNoiseLevels(int) -->
         <function-decl name='SetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13199,7 +13211,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMaxNoiseValue(double) -->
         <function-decl name='SetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13210,7 +13222,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetMinNoiseValue(double) -->
         <function-decl name='SetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -13221,7 +13233,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseGrainSize(int) -->
         <function-decl name='SetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1671' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13232,7 +13244,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseTextureSize(int) -->
         <function-decl name='SetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13243,7 +13255,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetNoiseType(int) -->
         <function-decl name='SetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1657' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13254,7 +13266,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetGenerateNoiseTexture(int) -->
         <function-decl name='SetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13265,11 +13277,11 @@ 
         <!-- bool vtkSurfaceLICPainter::NeedToRenderGeometry(vtkRenderer*, vtkActor*) -->
         <function-decl name='NeedToRenderGeometry' mangled-name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-520'/>
+          <parameter type-id='type-id-521'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-526'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -13287,9 +13299,9 @@ 
         <!-- bool vtkSurfaceLICPainter::CanRenderSurfaceLIC(vtkActor*, int) -->
         <function-decl name='CanRenderSurfaceLIC' mangled-name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-526'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- bool -->
@@ -13300,7 +13312,7 @@ 
         <!-- void vtkSurfaceLICPainter::SetInputArrayToProcess(int, const char*) -->
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- parameter of type 'const char*' -->
@@ -13313,7 +13325,7 @@ 
         <!-- bool vtkSurfaceLICPainter::VectorsToTCoords(vtkDataObject*) -->
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataObject*' -->
           <parameter type-id='type-id-229'/>
           <!-- bool -->
@@ -13324,7 +13336,7 @@ 
         <!-- bool vtkSurfaceLICPainter::PrepareOutput() -->
         <function-decl name='PrepareOutput' mangled-name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter13PrepareOutputEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
@@ -13333,7 +13345,7 @@ 
         <!-- void vtkSurfaceLICPainter::GetBounds(vtkDataObject*, double*) -->
         <function-decl name='GetBounds' mangled-name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkDataObject*' -->
           <parameter type-id='type-id-229'/>
           <!-- parameter of type 'double*' -->
@@ -13346,14 +13358,14 @@ 
         <!-- vtkSurfaceLICPainter* vtkSurfaceLICPainter::New() -->
         <function-decl name='New' mangled-name='_ZN20vtkSurfaceLICPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter3NewEv'>
           <!-- vtkSurfaceLICPainter* -->
-          <return type-id='type-id-498'/>
+          <return type-id='type-id-499'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkImageData* vtkSurfaceLICPainter::GetNoiseDataSet() -->
         <function-decl name='GetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-233'/>
         </function-decl>
@@ -13362,7 +13374,7 @@ 
         <!-- void vtkSurfaceLICPainter::UpdateNoiseImage(vtkRenderWindow*) -->
         <function-decl name='UpdateNoiseImage' mangled-name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderWindow*' -->
           <parameter type-id='type-id-35'/>
           <!-- void -->
@@ -13373,7 +13385,7 @@ 
         <!-- void vtkSurfaceLICPainter::InitializeResources() -->
         <function-decl name='InitializeResources' mangled-name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13382,9 +13394,9 @@ 
         <!-- void vtkSurfaceLICPainter::ValidateContext(vtkRenderer*) -->
         <function-decl name='ValidateContext' mangled-name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-520'/>
+          <parameter type-id='type-id-521'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13393,7 +13405,7 @@ 
         <!-- void vtkSurfaceLICPainter::CreateCommunicator() -->
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13402,7 +13414,7 @@ 
         <!-- vtkSurfaceLICPainter::~vtkSurfaceLICPainter(int) -->
         <function-decl name='~vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterD1Ev'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- void -->
@@ -13413,7 +13425,7 @@ 
         <!-- const char* vtkSurfaceLICPainter::GetClassNameInternal() -->
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK20vtkSurfaceLICPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-526' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <!-- const char* -->
           <return type-id='type-id-64'/>
         </function-decl>
@@ -13422,7 +13434,7 @@ 
         <!-- int vtkSurfaceLICPainter::IsA(const char*) -->
         <function-decl name='IsA' mangled-name='_ZN20vtkSurfaceLICPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- int -->
@@ -13433,7 +13445,7 @@ 
         <!-- void vtkSurfaceLICPainter::PrintSelf(std::ostream&, vtkIndent) -->
         <function-decl name='PrintSelf' mangled-name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'std::ostream&' -->
           <parameter type-id='type-id-67'/>
           <!-- parameter of type 'class vtkIndent' -->
@@ -13446,9 +13458,9 @@ 
         <!-- void vtkSurfaceLICPainter::ReportReferences(vtkGarbageCollector*) -->
         <function-decl name='ReportReferences' mangled-name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkGarbageCollector*' -->
-          <parameter type-id='type-id-502'/>
+          <parameter type-id='type-id-503'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13457,7 +13469,7 @@ 
         <!-- vtkObjectBase* vtkSurfaceLICPainter::NewInstanceInternal() -->
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK20vtkSurfaceLICPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-526' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-41'/>
         </function-decl>
@@ -13466,9 +13478,9 @@ 
         <!-- void vtkSurfaceLICPainter::ReleaseGraphicsResources(vtkWindow*) -->
         <function-decl name='ReleaseGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkWindow*' -->
-          <parameter type-id='type-id-527'/>
+          <parameter type-id='type-id-528'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13477,7 +13489,7 @@ 
         <!-- vtkDataObject* vtkSurfaceLICPainter::GetOutput() -->
         <function-decl name='GetOutput' mangled-name='_ZN20vtkSurfaceLICPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetOutputEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- vtkDataObject* -->
           <return type-id='type-id-229'/>
         </function-decl>
@@ -13486,11 +13498,11 @@ 
         <!-- void vtkSurfaceLICPainter::RenderInternal(vtkRenderer*, vtkActor*, unsigned long int, bool) -->
         <function-decl name='RenderInternal' mangled-name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-520'/>
+          <parameter type-id='type-id-521'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-526'/>
           <!-- parameter of type 'unsigned long int' -->
           <parameter type-id='type-id-4'/>
           <!-- parameter of type 'bool' -->
@@ -13503,7 +13515,7 @@ 
         <!-- void vtkSurfaceLICPainter::ProcessInformation(vtkInformation*) -->
         <function-decl name='ProcessInformation' mangled-name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-237'/>
           <!-- void -->
@@ -13514,7 +13526,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetEnable() -->
         <function-decl name='GetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9GetEnableEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13523,7 +13535,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNumberOfSteps() -->
         <function-decl name='GetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13532,7 +13544,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetStepSize() -->
         <function-decl name='GetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13541,7 +13553,7 @@ 
         <!-- void vtkSurfaceLICPainter::NormalizeVectorsOn() -->
         <function-decl name='NormalizeVectorsOn' mangled-name='_ZN20vtkSurfaceLICPainter18NormalizeVectorsOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13550,7 +13562,7 @@ 
         <!-- void vtkSurfaceLICPainter::NormalizeVectorsOff() -->
         <function-decl name='NormalizeVectorsOff' mangled-name='_ZN20vtkSurfaceLICPainter19NormalizeVectorsOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13559,7 +13571,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNormalizeVectors() -->
         <function-decl name='GetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13568,7 +13580,7 @@ 
         <!-- void vtkSurfaceLICPainter::MaskOnSurfaceOn() -->
         <function-decl name='MaskOnSurfaceOn' mangled-name='_ZN20vtkSurfaceLICPainter15MaskOnSurfaceOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13577,7 +13589,7 @@ 
         <!-- void vtkSurfaceLICPainter::MaskOnSurfaceOff() -->
         <function-decl name='MaskOnSurfaceOff' mangled-name='_ZN20vtkSurfaceLICPainter16MaskOnSurfaceOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13586,7 +13598,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetMaskOnSurface() -->
         <function-decl name='GetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskOnSurfaceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13595,7 +13607,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMaskThreshold() -->
         <function-decl name='GetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13604,7 +13616,7 @@ 
         <!-- double* vtkSurfaceLICPainter::GetMaskColor() -->
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double* -->
           <return type-id='type-id-186'/>
         </function-decl>
@@ -13613,13 +13625,13 @@ 
         <!-- void vtkSurfaceLICPainter::GetMaskColor(double&, double&, double&) -->
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13628,7 +13640,7 @@ 
         <!-- void vtkSurfaceLICPainter::GetMaskColor(double*) -->
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-186'/>
           <!-- void -->
@@ -13639,7 +13651,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMaskIntensity() -->
         <function-decl name='GetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13648,7 +13660,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetEnhancedLIC() -->
         <function-decl name='GetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13657,7 +13669,7 @@ 
         <!-- void vtkSurfaceLICPainter::EnhancedLICOn() -->
         <function-decl name='EnhancedLICOn' mangled-name='_ZN20vtkSurfaceLICPainter13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13666,7 +13678,7 @@ 
         <!-- void vtkSurfaceLICPainter::EnhancedLICOff() -->
         <function-decl name='EnhancedLICOff' mangled-name='_ZN20vtkSurfaceLICPainter14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13675,7 +13687,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetEnhanceContrast() -->
         <function-decl name='GetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13684,7 +13696,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetLowLICContrastEnhancementFactor() -->
         <function-decl name='GetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34GetLowLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13693,7 +13705,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetHighLICContrastEnhancementFactor() -->
         <function-decl name='GetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35GetHighLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13702,7 +13714,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetLowColorContrastEnhancementFactor() -->
         <function-decl name='GetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36GetLowColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13711,7 +13723,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetHighColorContrastEnhancementFactor() -->
         <function-decl name='GetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37GetHighColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13720,7 +13732,7 @@ 
         <!-- void vtkSurfaceLICPainter::AntiAliasOn() -->
         <function-decl name='AntiAliasOn' mangled-name='_ZN20vtkSurfaceLICPainter11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13729,7 +13741,7 @@ 
         <!-- void vtkSurfaceLICPainter::AntiAliasOff() -->
         <function-decl name='AntiAliasOff' mangled-name='_ZN20vtkSurfaceLICPainter12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13738,7 +13750,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetAntiAlias() -->
         <function-decl name='GetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13747,7 +13759,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetColorMode() -->
         <function-decl name='GetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12GetColorModeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13756,7 +13768,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetLICIntensity() -->
         <function-decl name='GetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15GetLICIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13765,7 +13777,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMapModeBias() -->
         <function-decl name='GetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14GetMapModeBiasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13774,7 +13786,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetGenerateNoiseTexture() -->
         <function-decl name='GetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23GetGenerateNoiseTextureEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13783,7 +13795,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseType() -->
         <function-decl name='GetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12GetNoiseTypeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13792,7 +13804,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseTextureSize() -->
         <function-decl name='GetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19GetNoiseTextureSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13801,7 +13813,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseGrainSize() -->
         <function-decl name='GetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17GetNoiseGrainSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13810,7 +13822,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMinNoiseValue() -->
         <function-decl name='GetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMinNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13819,7 +13831,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetMaxNoiseValue() -->
         <function-decl name='GetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13828,7 +13840,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNumberOfNoiseLevels() -->
         <function-decl name='GetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22GetNumberOfNoiseLevelsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13837,7 +13849,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetImpulseNoiseProbability() -->
         <function-decl name='GetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26GetImpulseNoiseProbabilityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13846,7 +13858,7 @@ 
         <!-- double vtkSurfaceLICPainter::GetImpulseNoiseBackgroundValue() -->
         <function-decl name='GetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30GetImpulseNoiseBackgroundValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='365' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -13855,7 +13867,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetNoiseGeneratorSeed() -->
         <function-decl name='GetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21GetNoiseGeneratorSeedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13864,7 +13876,7 @@ 
         <!-- int vtkSurfaceLICPainter::GetCompositeStrategy() -->
         <function-decl name='GetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20GetCompositeStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
@@ -13873,7 +13885,7 @@ 
         <!-- void vtkSurfaceLICPainter::WriteTimerLog(const char*) -->
         <function-decl name='WriteTimerLog' mangled-name='_ZN20vtkSurfaceLICPainter13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='393' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- void -->
@@ -13884,13 +13896,13 @@ 
         <!-- void vtkSurfaceLICPainter::GetGlobalMinMax(vtkPainterCommunicator*, float&, float&) -->
         <function-decl name='GetGlobalMinMax' mangled-name='_ZN20vtkSurfaceLICPainter15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'vtkPainterCommunicator*' -->
-          <parameter type-id='type-id-320'/>
+          <parameter type-id='type-id-321'/>
           <!-- parameter of type 'float&' -->
-          <parameter type-id='type-id-386'/>
+          <parameter type-id='type-id-387'/>
           <!-- parameter of type 'float&' -->
-          <parameter type-id='type-id-386'/>
+          <parameter type-id='type-id-387'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -13899,7 +13911,7 @@ 
         <!-- void vtkSurfaceLICPainter::StartTimerEvent(const char*) -->
         <function-decl name='StartTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='416' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- void -->
@@ -13910,7 +13922,7 @@ 
         <!-- void vtkSurfaceLICPainter::EndTimerEvent(const char*) -->
         <function-decl name='EndTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- void -->
@@ -13921,75 +13933,75 @@ 
         <!-- vtkPainterCommunicator* vtkSurfaceLICPainter::CreateCommunicator(int) -->
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- parameter of type 'int' -->
           <parameter type-id='type-id-17'/>
           <!-- vtkPainterCommunicator* -->
-          <return type-id='type-id-320'/>
+          <return type-id='type-id-321'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='84'>
         <!-- bool vtkSurfaceLICPainter::NeedToUpdateCommunicator() -->
         <function-decl name='NeedToUpdateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv'>
           <!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <!-- bool -->
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- const vtkSurfaceLICDefaultPainter -->
-    <qualified-type-def type-id='type-id-496' const='yes' id='type-id-529'/>
+    <qualified-type-def type-id='type-id-497' const='yes' id='type-id-530'/>
     <!-- const vtkSurfaceLICDefaultPainter& -->
-    <reference-type-def kind='lvalue' type-id='type-id-529' size-in-bits='64' id='type-id-500'/>
+    <reference-type-def kind='lvalue' type-id='type-id-530' size-in-bits='64' id='type-id-501'/>
     <!-- const vtkSurfaceLICDefaultPainter* -->
-    <pointer-type-def type-id='type-id-529' size-in-bits='64' id='type-id-501'/>
+    <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-502'/>
     <!-- const vtkTimeStamp -->
-    <qualified-type-def type-id='type-id-493' const='yes' id='type-id-530'/>
+    <qualified-type-def type-id='type-id-494' const='yes' id='type-id-531'/>
     <!-- const vtkTimeStamp* -->
-    <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-531'/>
+    <pointer-type-def type-id='type-id-531' size-in-bits='64' id='type-id-532'/>
     <!-- vtkActor* -->
-    <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-525'/>
+    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-526'/>
     <!-- vtkClipPlanesPainter* -->
-    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-534'/>
+    <pointer-type-def type-id='type-id-534' size-in-bits='64' id='type-id-535'/>
     <!-- vtkCoincidentTopologyResolutionPainter* -->
-    <pointer-type-def type-id='type-id-535' size-in-bits='64' id='type-id-536'/>
+    <pointer-type-def type-id='type-id-536' size-in-bits='64' id='type-id-537'/>
     <!-- vtkCompositePainter* -->
-    <pointer-type-def type-id='type-id-537' size-in-bits='64' id='type-id-538'/>
+    <pointer-type-def type-id='type-id-538' size-in-bits='64' id='type-id-539'/>
     <!-- vtkDefaultPainter* -->
-    <pointer-type-def type-id='type-id-497' size-in-bits='64' id='type-id-539'/>
+    <pointer-type-def type-id='type-id-498' size-in-bits='64' id='type-id-540'/>
     <!-- vtkDisplayListPainter* -->
-    <pointer-type-def type-id='type-id-540' size-in-bits='64' id='type-id-541'/>
+    <pointer-type-def type-id='type-id-541' size-in-bits='64' id='type-id-542'/>
     <!-- vtkGarbageCollector* -->
-    <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-502'/>
+    <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-503'/>
     <!-- vtkLightingPainter* -->
-    <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-544'/>
+    <pointer-type-def type-id='type-id-544' size-in-bits='64' id='type-id-545'/>
     <!-- vtkPainter* -->
-    <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-545'/>
+    <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-546'/>
     <!-- vtkRenderer* -->
-    <pointer-type-def type-id='type-id-546' size-in-bits='64' id='type-id-520'/>
+    <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-521'/>
     <!-- vtkRepresentationPainter* -->
-    <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-548'/>
+    <pointer-type-def type-id='type-id-548' size-in-bits='64' id='type-id-549'/>
     <!-- vtkScalarsToColorsPainter* -->
-    <pointer-type-def type-id='type-id-549' size-in-bits='64' id='type-id-550'/>
+    <pointer-type-def type-id='type-id-550' size-in-bits='64' id='type-id-551'/>
     <!-- vtkSurfaceLICDefaultPainter* -->
-    <pointer-type-def type-id='type-id-496' size-in-bits='64' id='type-id-499'/>
+    <pointer-type-def type-id='type-id-497' size-in-bits='64' id='type-id-500'/>
     <!-- vtkSurfaceLICPainter* -->
-    <pointer-type-def type-id='type-id-503' size-in-bits='64' id='type-id-498'/>
+    <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-499'/>
     <!-- vtkTimeStamp& -->
-    <reference-type-def kind='lvalue' type-id='type-id-493' size-in-bits='64' id='type-id-495'/>
+    <reference-type-def kind='lvalue' type-id='type-id-494' size-in-bits='64' id='type-id-496'/>
     <!-- vtkTimeStamp* -->
-    <pointer-type-def type-id='type-id-493' size-in-bits='64' id='type-id-494'/>
+    <pointer-type-def type-id='type-id-494' size-in-bits='64' id='type-id-495'/>
     <!-- struct vtkActor -->
-    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-532'/>
+    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-533'/>
     <!-- class vtkClipPlanesPainter -->
-    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-533'/>
+    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-534'/>
     <!-- class vtkCoincidentTopologyResolutionPainter -->
-    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-535'/>
+    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-536'/>
     <!-- struct vtkCompositePainter -->
-    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-537'/>
+    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-538'/>
     <!-- class vtkDefaultPainter -->
-    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-497'>
+    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-498'>
       <member-function access='private' static='yes'>
         <!-- int vtkDefaultPainter::IsTypeOf() -->
         <function-decl name='IsTypeOf' mangled-name='_ZN17vtkDefaultPainter8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -14003,86 +14015,86 @@ 
         <!-- vtkPainter* vtkDefaultPainter::GetDelegatePainter() -->
         <function-decl name='GetDelegatePainter' mangled-name='_ZN17vtkDefaultPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkPainter* -->
-          <return type-id='type-id-545'/>
+          <return type-id='type-id-546'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='40'>
         <!-- vtkScalarsToColorsPainter* vtkDefaultPainter::GetScalarsToColorsPainter() -->
         <function-decl name='GetScalarsToColorsPainter' mangled-name='_ZN17vtkDefaultPainter25GetScalarsToColorsPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkScalarsToColorsPainter* -->
-          <return type-id='type-id-550'/>
+          <return type-id='type-id-551'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='41'>
         <!-- vtkClipPlanesPainter* vtkDefaultPainter::GetClipPlanesPainter() -->
         <function-decl name='GetClipPlanesPainter' mangled-name='_ZN17vtkDefaultPainter20GetClipPlanesPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkClipPlanesPainter* -->
-          <return type-id='type-id-534'/>
+          <return type-id='type-id-535'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='42'>
         <!-- vtkDisplayListPainter* vtkDefaultPainter::GetDisplayListPainter() -->
         <function-decl name='GetDisplayListPainter' mangled-name='_ZN17vtkDefaultPainter21GetDisplayListPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkDisplayListPainter* -->
-          <return type-id='type-id-541'/>
+          <return type-id='type-id-542'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='43'>
         <!-- vtkCompositePainter* vtkDefaultPainter::GetCompositePainter() -->
         <function-decl name='GetCompositePainter' mangled-name='_ZN17vtkDefaultPainter19GetCompositePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkCompositePainter* -->
-          <return type-id='type-id-538'/>
+          <return type-id='type-id-539'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='44'>
         <!-- vtkCoincidentTopologyResolutionPainter* vtkDefaultPainter::GetCoincidentTopologyResolutionPainter() -->
         <function-decl name='GetCoincidentTopologyResolutionPainter' mangled-name='_ZN17vtkDefaultPainter38GetCoincidentTopologyResolutionPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkCoincidentTopologyResolutionPainter* -->
-          <return type-id='type-id-536'/>
+          <return type-id='type-id-537'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='45'>
         <!-- vtkLightingPainter* vtkDefaultPainter::GetLightingPainter() -->
         <function-decl name='GetLightingPainter' mangled-name='_ZN17vtkDefaultPainter18GetLightingPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkLightingPainter* -->
-          <return type-id='type-id-544'/>
+          <return type-id='type-id-545'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='46'>
         <!-- vtkRepresentationPainter* vtkDefaultPainter::GetRepresentationPainter() -->
         <function-decl name='GetRepresentationPainter' mangled-name='_ZN17vtkDefaultPainter24GetRepresentationPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkDefaultPainter*' -->
-          <parameter type-id='type-id-539' is-artificial='yes'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
           <!-- vtkRepresentationPainter* -->
-          <return type-id='type-id-548'/>
+          <return type-id='type-id-549'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- struct vtkDisplayListPainter -->
-    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-540'/>
+    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-541'/>
     <!-- class vtkGarbageCollector -->
-    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-542'/>
+    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-543'/>
     <!-- struct vtkLightingPainter -->
-    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-543'/>
+    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-544'/>
     <!-- class vtkPainter -->
-    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-504'>
+    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-505'>
       <member-type access='private'>
         <!-- enum vtkPainter::__anonymous_enum__ -->
-        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-551'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-552'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='VERTS' value='1'/>
           <enumerator name='LINES' value='2'/>
@@ -14103,7 +14115,7 @@ 
         <!-- vtkInformation* vtkPainter::GetInformation() -->
         <function-decl name='GetInformation' mangled-name='_ZN10vtkPainter14GetInformationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- vtkInformation* -->
           <return type-id='type-id-237'/>
         </function-decl>
@@ -14112,16 +14124,16 @@ 
         <!-- vtkPainter* vtkPainter::GetDelegatePainter() -->
         <function-decl name='GetDelegatePainter' mangled-name='_ZN10vtkPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- vtkPainter* -->
-          <return type-id='type-id-545'/>
+          <return type-id='type-id-546'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='26'>
         <!-- void vtkPainter::SetProgress(double) -->
         <function-decl name='SetProgress' mangled-name='_ZN10vtkPainter11SetProgressEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- void -->
@@ -14132,7 +14144,7 @@ 
         <!-- double vtkPainter::GetProgressMinValue() -->
         <function-decl name='GetProgressMinValue' mangled-name='_ZN10vtkPainter19GetProgressMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -14141,7 +14153,7 @@ 
         <!-- double vtkPainter::GetProgressMaxValue() -->
         <function-decl name='GetProgressMaxValue' mangled-name='_ZN10vtkPainter19GetProgressMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -14150,7 +14162,7 @@ 
         <!-- double vtkPainter::GetProgress() -->
         <function-decl name='GetProgress' mangled-name='_ZN10vtkPainter11GetProgressEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- double -->
           <return type-id='type-id-15'/>
         </function-decl>
@@ -14159,7 +14171,7 @@ 
         <!-- vtkDataObject* vtkPainter::GetInput() -->
         <function-decl name='GetInput' mangled-name='_ZN10vtkPainter8GetInputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- vtkDataObject* -->
           <return type-id='type-id-229'/>
         </function-decl>
@@ -14168,7 +14180,7 @@ 
         <!-- vtkDataObject* vtkPainter::GetOutput() -->
         <function-decl name='GetOutput' mangled-name='_ZN10vtkPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- vtkDataObject* -->
           <return type-id='type-id-229'/>
         </function-decl>
@@ -14177,11 +14189,11 @@ 
         <!-- void vtkPainter::PrepareForRendering(vtkRenderer*, vtkActor*) -->
         <function-decl name='PrepareForRendering' mangled-name='_ZN10vtkPainter19PrepareForRenderingEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-520'/>
+          <parameter type-id='type-id-521'/>
           <!-- parameter of type 'vtkActor*' -->
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-526'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14190,7 +14202,7 @@ 
         <!-- void vtkPainter::ProcessInformation(vtkInformation*) -->
         <function-decl name='ProcessInformation' mangled-name='_ZN10vtkPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkPainter*' -->
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <!-- parameter of type 'vtkInformation*' -->
           <parameter type-id='type-id-237'/>
           <!-- void -->
@@ -14199,46 +14211,46 @@ 
       </member-function>
     </class-decl>
     <!-- struct vtkRenderer -->
-    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-546'>
+    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'>
       <member-function access='public'>
         <!-- vtkRenderWindow* vtkRenderer::GetRenderWindow() -->
         <function-decl name='GetRenderWindow' mangled-name='_ZN11vtkRenderer15GetRenderWindowEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkRenderer.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkRenderer*' -->
-          <parameter type-id='type-id-520' is-artificial='yes'/>
+          <parameter type-id='type-id-521' is-artificial='yes'/>
           <!-- vtkRenderWindow* -->
           <return type-id='type-id-35'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- struct vtkRepresentationPainter -->
-    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'/>
+    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-548'/>
     <!-- struct vtkScalarsToColorsPainter -->
-    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-549'/>
+    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-550'/>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- double[3] -->
-    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-523'>
+    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-524'>
       <!-- <anonymous range>[3] -->
-      <subrange length='3' type-id='type-id-4' id='type-id-552'/>
+      <subrange length='3' type-id='type-id-4' id='type-id-553'/>
     </array-type-def>
     <!-- unsigned char -->
-    <type-decl name='unsigned char' size-in-bits='8' id='type-id-553'/>
+    <type-decl name='unsigned char' size-in-bits='8' id='type-id-554'/>
     <!-- vtkSmartPointer<vtkOpenGLLightMonitor>[8] -->
-    <array-type-def dimensions='1' type-id='type-id-554' size-in-bits='512' id='type-id-506'>
+    <array-type-def dimensions='1' type-id='type-id-555' size-in-bits='512' id='type-id-507'>
       <!-- <anonymous range>[8] -->
-      <subrange length='8' type-id='type-id-4' id='type-id-555'/>
+      <subrange length='8' type-id='type-id-4' id='type-id-556'/>
     </array-type-def>
     <!-- typedef float GLfloat -->
-    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-556'/>
+    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-557'/>
     <!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
-    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-508'>
+    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-509'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-558' is-artificial='yes'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14247,9 +14259,9 @@ 
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer(vtkBackgroundColorMonitor*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-558' is-artificial='yes'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-559'/>
+          <parameter type-id='type-id-560'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14258,11 +14270,11 @@ 
         <!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer(vtkBackgroundColorMonitor*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-558' is-artificial='yes'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-559'/>
-          <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
           <parameter type-id='type-id-560'/>
+          <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14271,39 +14283,39 @@ 
         <!-- vtkBackgroundColorMonitor* vtkSmartPointer<vtkBackgroundColorMonitor>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-561' is-artificial='yes'/>
+          <parameter type-id='type-id-562' is-artificial='yes'/>
           <!-- vtkBackgroundColorMonitor* -->
-          <return type-id='type-id-559'/>
+          <return type-id='type-id-560'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSmartPointer<vtkBackgroundColorMonitor>& vtkSmartPointer<vtkBackgroundColorMonitor>::operator=(vtkBackgroundColorMonitor*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
-          <parameter type-id='type-id-558' is-artificial='yes'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
           <!-- parameter of type 'vtkBackgroundColorMonitor*' -->
-          <parameter type-id='type-id-559'/>
+          <parameter type-id='type-id-560'/>
           <!-- vtkSmartPointer<vtkBackgroundColorMonitor>& -->
-          <return type-id='type-id-562'/>
+          <return type-id='type-id-563'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSmartPointer<vtkBackgroundColorMonitor>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
-          <return type-id='type-id-508'/>
+          <return type-id='type-id-509'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
-    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
+    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-563' is-artificial='yes'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14312,9 +14324,9 @@ 
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer(vtkColorMaterialHelper*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-563' is-artificial='yes'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-564'/>
+          <parameter type-id='type-id-565'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14323,11 +14335,11 @@ 
         <!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer(vtkColorMaterialHelper*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-563' is-artificial='yes'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-564'/>
+          <parameter type-id='type-id-565'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14336,39 +14348,39 @@ 
         <!-- vtkColorMaterialHelper* vtkSmartPointer<vtkColorMaterialHelper>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-565' is-artificial='yes'/>
+          <parameter type-id='type-id-566' is-artificial='yes'/>
           <!-- vtkColorMaterialHelper* -->
-          <return type-id='type-id-564'/>
+          <return type-id='type-id-565'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSmartPointer<vtkColorMaterialHelper>& vtkSmartPointer<vtkColorMaterialHelper>::operator=(vtkColorMaterialHelper*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
-          <parameter type-id='type-id-563' is-artificial='yes'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
           <!-- parameter of type 'vtkColorMaterialHelper*' -->
-          <parameter type-id='type-id-564'/>
+          <parameter type-id='type-id-565'/>
           <!-- vtkSmartPointer<vtkColorMaterialHelper>& -->
-          <return type-id='type-id-566'/>
+          <return type-id='type-id-567'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSmartPointer<vtkColorMaterialHelper>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkFrameBufferObject2> -->
-    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
+    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14377,9 +14389,9 @@ 
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer(vtkFrameBufferObject2*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-319'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14388,11 +14400,11 @@ 
         <!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer(vtkFrameBufferObject2*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-319'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14401,32 +14413,32 @@ 
         <!-- vtkSmartPointer<vtkFrameBufferObject2>& vtkSmartPointer<vtkFrameBufferObject2>::operator=(vtkFrameBufferObject2*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
           <!-- parameter of type 'vtkFrameBufferObject2*' -->
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-319'/>
           <!-- vtkSmartPointer<vtkFrameBufferObject2>& -->
-          <return type-id='type-id-568'/>
+          <return type-id='type-id-569'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkFrameBufferObject2* vtkSmartPointer<vtkFrameBufferObject2>::operator vtkFrameBufferObject2*() -->
         <function-decl name='operator vtkFrameBufferObject2*' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkFrameBufferObject2>*' -->
-          <parameter type-id='type-id-569' is-artificial='yes'/>
+          <parameter type-id='type-id-570' is-artificial='yes'/>
           <!-- vtkFrameBufferObject2* -->
-          <return type-id='type-id-318'/>
+          <return type-id='type-id-319'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkImageData> -->
-    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
+    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14435,7 +14447,7 @@ 
         <!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer(vtkImageData*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-233'/>
           <!-- void -->
@@ -14446,11 +14458,11 @@ 
         <!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer(vtkImageData*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-233'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14459,7 +14471,7 @@ 
         <!-- vtkImageData* vtkSmartPointer<vtkImageData>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-572' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-233'/>
         </function-decl>
@@ -14468,32 +14480,32 @@ 
         <!-- vtkSmartPointer<vtkImageData>& vtkSmartPointer<vtkImageData>::operator=(vtkImageData*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <!-- parameter of type 'vtkImageData*' -->
           <parameter type-id='type-id-233'/>
           <!-- vtkSmartPointer<vtkImageData>& -->
-          <return type-id='type-id-572'/>
+          <return type-id='type-id-573'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkImageData* vtkSmartPointer<vtkImageData>::operator vtkImageData*() -->
         <function-decl name='operator vtkImageData*' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-572' is-artificial='yes'/>
           <!-- vtkImageData* -->
           <return type-id='type-id-233'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkLightingHelper> -->
-    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
+    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14502,9 +14514,9 @@ 
         <!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer(vtkLightingHelper*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-574'/>
+          <parameter type-id='type-id-575'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14513,11 +14525,11 @@ 
         <!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer(vtkLightingHelper*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-574'/>
+          <parameter type-id='type-id-575'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14526,39 +14538,39 @@ 
         <!-- vtkLightingHelper* vtkSmartPointer<vtkLightingHelper>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-575' is-artificial='yes'/>
+          <parameter type-id='type-id-576' is-artificial='yes'/>
           <!-- vtkLightingHelper* -->
-          <return type-id='type-id-574'/>
+          <return type-id='type-id-575'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSmartPointer<vtkLightingHelper>& vtkSmartPointer<vtkLightingHelper>::operator=(vtkLightingHelper*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
           <!-- parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-574'/>
+          <parameter type-id='type-id-575'/>
           <!-- vtkSmartPointer<vtkLightingHelper>& -->
-          <return type-id='type-id-576'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkLightingHelper> vtkSmartPointer<vtkLightingHelper>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkLightingHelper> -->
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkLineIntegralConvolution2D> -->
-    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
+    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-518'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-577' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14567,9 +14579,9 @@ 
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer(vtkLineIntegralConvolution2D*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-577' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413'/>
+          <parameter type-id='type-id-414'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14578,11 +14590,11 @@ 
         <!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer(vtkLineIntegralConvolution2D*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-577' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413'/>
+          <parameter type-id='type-id-414'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14591,32 +14603,32 @@ 
         <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& vtkSmartPointer<vtkLineIntegralConvolution2D>::operator=(vtkLineIntegralConvolution2D*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-577' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
-          <parameter type-id='type-id-413'/>
+          <parameter type-id='type-id-414'/>
           <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& -->
-          <return type-id='type-id-578'/>
+          <return type-id='type-id-579'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkLineIntegralConvolution2D* vtkSmartPointer<vtkLineIntegralConvolution2D>::operator vtkLineIntegralConvolution2D*() -->
         <function-decl name='operator vtkLineIntegralConvolution2D*' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
-          <parameter type-id='type-id-579' is-artificial='yes'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
           <!-- vtkLineIntegralConvolution2D* -->
-          <return type-id='type-id-413'/>
+          <return type-id='type-id-414'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-554'>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-555'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14625,9 +14637,9 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer(vtkOpenGLLightMonitor*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-581'/>
+          <parameter type-id='type-id-582'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14636,11 +14648,11 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer(vtkOpenGLLightMonitor*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-581'/>
+          <parameter type-id='type-id-582'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14649,39 +14661,39 @@ 
         <!-- vtkOpenGLLightMonitor* vtkSmartPointer<vtkOpenGLLightMonitor>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-582' is-artificial='yes'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
           <!-- vtkOpenGLLightMonitor* -->
-          <return type-id='type-id-581'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSmartPointer<vtkOpenGLLightMonitor>& vtkSmartPointer<vtkOpenGLLightMonitor>::operator=(vtkOpenGLLightMonitor*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
-          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLLightMonitor*' -->
-          <parameter type-id='type-id-581'/>
+          <parameter type-id='type-id-582'/>
           <!-- vtkSmartPointer<vtkOpenGLLightMonitor>& -->
-          <return type-id='type-id-583'/>
+          <return type-id='type-id-584'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSmartPointer<vtkOpenGLLightMonitor>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
-          <return type-id='type-id-554'/>
+          <return type-id='type-id-555'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-507'>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-508'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-584' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14690,9 +14702,9 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer(vtkOpenGLModelViewProjectionMonitor*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-584' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-585'/>
+          <parameter type-id='type-id-586'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14701,11 +14713,11 @@ 
         <!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer(vtkOpenGLModelViewProjectionMonitor*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-584' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-585'/>
+          <parameter type-id='type-id-586'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14714,39 +14726,39 @@ 
         <!-- vtkOpenGLModelViewProjectionMonitor* vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-586' is-artificial='yes'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
           <!-- vtkOpenGLModelViewProjectionMonitor* -->
-          <return type-id='type-id-585'/>
+          <return type-id='type-id-586'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator=(vtkOpenGLModelViewProjectionMonitor*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
-          <parameter type-id='type-id-584' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
-          <parameter type-id='type-id-585'/>
+          <parameter type-id='type-id-586'/>
           <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& -->
-          <return type-id='type-id-587'/>
+          <return type-id='type-id-588'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-          <return type-id='type-id-507'/>
+          <return type-id='type-id-508'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkShaderProgram2> -->
-    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
+    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14755,7 +14767,7 @@ 
         <!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer(vtkShaderProgram2*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- void -->
@@ -14766,11 +14778,11 @@ 
         <!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer(vtkShaderProgram2*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14779,32 +14791,32 @@ 
         <!-- vtkSmartPointer<vtkShaderProgram2>& vtkSmartPointer<vtkShaderProgram2>::operator=(vtkShaderProgram2*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <!-- parameter of type 'vtkShaderProgram2*' -->
           <parameter type-id='type-id-258'/>
           <!-- vtkSmartPointer<vtkShaderProgram2>& -->
-          <return type-id='type-id-589'/>
+          <return type-id='type-id-590'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkShaderProgram2* vtkSmartPointer<vtkShaderProgram2>::operator vtkShaderProgram2*() -->
         <function-decl name='operator vtkShaderProgram2*' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkShaderProgram2>*' -->
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <!-- vtkShaderProgram2* -->
           <return type-id='type-id-258'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkSurfaceLICComposite> -->
-    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
+    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-591' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14813,9 +14825,9 @@ 
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer(vtkSurfaceLICComposite*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-591' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481'/>
+          <parameter type-id='type-id-482'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14824,11 +14836,11 @@ 
         <!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer(vtkSurfaceLICComposite*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-591' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481'/>
+          <parameter type-id='type-id-482'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14837,41 +14849,41 @@ 
         <!-- vtkSmartPointer<vtkSurfaceLICComposite>& vtkSmartPointer<vtkSurfaceLICComposite>::operator=(vtkSurfaceLICComposite*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-591' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <!-- parameter of type 'vtkSurfaceLICComposite*' -->
-          <parameter type-id='type-id-481'/>
+          <parameter type-id='type-id-482'/>
           <!-- vtkSmartPointer<vtkSurfaceLICComposite>& -->
-          <return type-id='type-id-592'/>
+          <return type-id='type-id-593'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::operator vtkSurfaceLICComposite*() -->
         <function-decl name='operator vtkSurfaceLICComposite*' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-593' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- vtkSurfaceLICComposite* -->
-          <return type-id='type-id-481'/>
+          <return type-id='type-id-482'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
-          <parameter type-id='type-id-593' is-artificial='yes'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
           <!-- vtkSurfaceLICComposite* -->
-          <return type-id='type-id-481'/>
+          <return type-id='type-id-482'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkTextureObject> -->
-    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-510'>
+    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14880,9 +14892,9 @@ 
         <!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer(vtkTextureObject*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14891,11 +14903,11 @@ 
         <!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer(vtkTextureObject*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14904,52 +14916,52 @@ 
         <!-- vtkSmartPointer<vtkTextureObject>& vtkSmartPointer<vtkTextureObject>::operator=(vtkTextureObject*) -->
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- vtkSmartPointer<vtkTextureObject>& -->
-          <return type-id='type-id-519'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::operator vtkTextureObject*() -->
         <function-decl name='operator vtkTextureObject*' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-595' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-595' is-artificial='yes'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
           <!-- vtkTextureObject* -->
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkTextureObject>::TakeReference(vtkTextureObject*) -->
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointer<vtkTimerLog> -->
-    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-596'>
+    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-597'>
       <!-- class vtkSmartPointerBase -->
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer() -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-597' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14958,9 +14970,9 @@ 
         <!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer(vtkTimerLog*) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-597' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-598'/>
+          <parameter type-id='type-id-599'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14969,11 +14981,11 @@ 
         <!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer(vtkTimerLog*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-597' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <!-- parameter of type 'vtkTimerLog*' -->
-          <parameter type-id='type-id-598'/>
+          <parameter type-id='type-id-599'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -14982,24 +14994,24 @@ 
         <!-- vtkSmartPointer<vtkTimerLog> vtkSmartPointer<vtkTimerLog>::New() -->
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- class vtkSmartPointer<vtkTimerLog> -->
-          <return type-id='type-id-596'/>
+          <return type-id='type-id-597'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- vtkTimerLog* vtkSmartPointer<vtkTimerLog>::operator&#45;>() -->
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointer<vtkTimerLog>*' -->
-          <parameter type-id='type-id-599' is-artificial='yes'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
           <!-- vtkTimerLog* -->
-          <return type-id='type-id-598'/>
+          <return type-id='type-id-599'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkSmartPointerBase -->
-    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-557'>
+    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-558'>
       <member-type access='protected'>
         <!-- class vtkSmartPointerBase::NoReference -->
-        <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-600'/>
+        <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-601'/>
       </member-type>
       <data-member access='protected' layout-offset-in-bits='0'>
         <!-- vtkObjectBase* vtkSmartPointerBase::Object -->
@@ -15009,7 +15021,7 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase() -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15018,7 +15030,7 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase(vtkObjectBase*) -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-41'/>
           <!-- void -->
@@ -15029,9 +15041,9 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase(const vtkSmartPointerBase&) -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'const vtkSmartPointerBase&' -->
-          <parameter type-id='type-id-602'/>
+          <parameter type-id='type-id-603'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15040,7 +15052,7 @@ 
         <!-- vtkSmartPointerBase::~vtkSmartPointerBase(int) -->
         <function-decl name='~vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- artificial parameter of type 'int' -->
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <!-- void -->
@@ -15051,11 +15063,11 @@ 
         <!-- vtkSmartPointerBase::vtkSmartPointerBase(vtkObjectBase*, const vtkSmartPointerBase::NoReference&) -->
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-41'/>
           <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15064,21 +15076,21 @@ 
         <!-- vtkObjectBase* vtkSmartPointerBase::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK19vtkSmartPointerBase10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkSmartPointerBase*' -->
-          <parameter type-id='type-id-603' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <!-- vtkObjectBase* -->
           <return type-id='type-id-41'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkWeakPointer<vtkOpenGLRenderWindow> -->
-    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-509'>
+    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-510'>
       <!-- class vtkWeakPointerBase -->
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-33'/>
       <member-function access='private'>
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer() -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15087,7 +15099,7 @@ 
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(vtkOpenGLRenderWindow*) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLRenderWindow*' -->
           <parameter type-id='type-id-243'/>
           <!-- void -->
@@ -15098,7 +15110,7 @@ 
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(const vtkWeakPointerBase&) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <!-- parameter of type 'const vtkWeakPointerBase&' -->
           <parameter type-id='type-id-36'/>
           <!-- void -->
@@ -15109,7 +15121,7 @@ 
         <!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(vtkOpenGLRenderWindow*, const vtkWeakPointerBase::NoReference&) -->
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLRenderWindow*' -->
           <parameter type-id='type-id-243'/>
           <!-- parameter of type 'const vtkWeakPointerBase::NoReference&' -->
@@ -15122,7 +15134,7 @@ 
         <!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::GetPointer() -->
         <function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-606' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow* -->
           <return type-id='type-id-243'/>
         </function-decl>
@@ -15131,7 +15143,7 @@ 
         <!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::operator vtkOpenGLRenderWindow*() -->
         <function-decl name='operator vtkOpenGLRenderWindow*' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-606' is-artificial='yes'/>
           <!-- vtkOpenGLRenderWindow* -->
           <return type-id='type-id-243'/>
         </function-decl>
@@ -15140,29 +15152,29 @@ 
         <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& vtkWeakPointer<vtkOpenGLRenderWindow>::operator=(vtkOpenGLRenderWindow*) -->
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <!-- parameter of type 'vtkOpenGLRenderWindow*' -->
           <parameter type-id='type-id-243'/>
           <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& -->
-          <return type-id='type-id-606'/>
+          <return type-id='type-id-607'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkBoundingBox -->
-    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-607'>
+    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-608'>
       <data-member access='protected' layout-offset-in-bits='0'>
         <!-- double vtkBoundingBox::MinPnt[3] -->
-        <var-decl name='MinPnt' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MinPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='192'>
         <!-- double vtkBoundingBox::MaxPnt[3] -->
-        <var-decl name='MaxPnt' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MaxPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <!-- vtkBoundingBox::vtkBoundingBox() -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15171,9 +15183,9 @@ 
         <!-- vtkBoundingBox::vtkBoundingBox(const double*) -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-610'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15182,7 +15194,7 @@ 
         <!-- vtkBoundingBox::vtkBoundingBox(double, double, double, double, double, double) -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- parameter of type 'double' -->
           <parameter type-id='type-id-15'/>
           <!-- parameter of type 'double' -->
@@ -15203,9 +15215,9 @@ 
         <!-- vtkBoundingBox::vtkBoundingBox(const vtkBoundingBox&) -->
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- parameter of type 'const vtkBoundingBox&' -->
-          <parameter type-id='type-id-610'/>
+          <parameter type-id='type-id-611'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15214,19 +15226,19 @@ 
         <!-- void vtkBoundingBox::GetBounds(double&, double&, double&, double&, double&, double&) -->
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsERdS0_S0_S0_S0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-611' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- parameter of type 'double&' -->
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-529'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15235,7 +15247,7 @@ 
         <!-- void vtkBoundingBox::Reset() -->
         <function-decl name='Reset' mangled-name='_ZN14vtkBoundingBox5ResetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkBoundingBox*' -->
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -15244,7 +15256,7 @@ 
         <!-- void vtkBoundingBox::GetBounds(double*) -->
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-611' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- parameter of type 'double*' -->
           <parameter type-id='type-id-186'/>
           <!-- void -->
@@ -15255,304 +15267,311 @@ 
         <!-- const double* vtkBoundingBox::GetMinPoint() -->
         <function-decl name='GetMinPoint' mangled-name='_ZNK14vtkBoundingBox11GetMinPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-611' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- const double* -->
-          <return type-id='type-id-609'/>
+          <return type-id='type-id-610'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <!-- const double* vtkBoundingBox::GetMaxPoint() -->
         <function-decl name='GetMaxPoint' mangled-name='_ZNK14vtkBoundingBox11GetMaxPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'const vtkBoundingBox*' -->
-          <parameter type-id='type-id-611' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <!-- const double* -->
-          <return type-id='type-id-609'/>
+          <return type-id='type-id-610'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <!-- int vtkBoundingBox::IsValid() -->
         <function-decl name='IsValid' mangled-name='_ZN14vtkBoundingBox7IsValidEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-610'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- GLfloat* -->
-    <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-56'/>
+    <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-56'/>
     <!-- const double -->
-    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-612'/>
+    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-613'/>
     <!-- const double& -->
-    <reference-type-def kind='lvalue' type-id='type-id-612' size-in-bits='64' id='type-id-613'/>
+    <reference-type-def kind='lvalue' type-id='type-id-613' size-in-bits='64' id='type-id-614'/>
     <!-- const double* -->
-    <pointer-type-def type-id='type-id-612' size-in-bits='64' id='type-id-609'/>
+    <pointer-type-def type-id='type-id-613' size-in-bits='64' id='type-id-610'/>
     <!-- const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-    <qualified-type-def type-id='type-id-614' const='yes' id='type-id-615'/>
+    <qualified-type-def type-id='type-id-615' const='yes' id='type-id-616'/>
     <!-- const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-616'/>
+    <pointer-type-def type-id='type-id-616' size-in-bits='64' id='type-id-617'/>
     <!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-    <qualified-type-def type-id='type-id-617' const='yes' id='type-id-618'/>
+    <qualified-type-def type-id='type-id-618' const='yes' id='type-id-619'/>
     <!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-618' size-in-bits='64' id='type-id-619'/>
+    <reference-type-def kind='lvalue' type-id='type-id-619' size-in-bits='64' id='type-id-620'/>
     <!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-618' size-in-bits='64' id='type-id-620'/>
+    <pointer-type-def type-id='type-id-619' size-in-bits='64' id='type-id-621'/>
     <!-- const vtkBoundingBox -->
-    <qualified-type-def type-id='type-id-607' const='yes' id='type-id-621'/>
+    <qualified-type-def type-id='type-id-608' const='yes' id='type-id-622'/>
     <!-- const vtkBoundingBox& -->
-    <reference-type-def kind='lvalue' type-id='type-id-621' size-in-bits='64' id='type-id-610'/>
+    <reference-type-def kind='lvalue' type-id='type-id-622' size-in-bits='64' id='type-id-611'/>
     <!-- const vtkBoundingBox* -->
-    <pointer-type-def type-id='type-id-621' size-in-bits='64' id='type-id-611'/>
+    <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-612'/>
     <!-- const vtkDataObject -->
-    <qualified-type-def type-id='type-id-228' const='yes' id='type-id-622'/>
+    <qualified-type-def type-id='type-id-228' const='yes' id='type-id-623'/>
     <!-- const vtkDataObject* -->
-    <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-264'/>
+    <pointer-type-def type-id='type-id-623' size-in-bits='64' id='type-id-264'/>
     <!-- const vtkSmartPointer<vtkBackgroundColorMonitor> -->
-    <qualified-type-def type-id='type-id-508' const='yes' id='type-id-623'/>
+    <qualified-type-def type-id='type-id-509' const='yes' id='type-id-624'/>
     <!-- const vtkSmartPointer<vtkBackgroundColorMonitor>* -->
-    <pointer-type-def type-id='type-id-623' size-in-bits='64' id='type-id-561'/>
+    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-562'/>
     <!-- const vtkSmartPointer<vtkColorMaterialHelper> -->
-    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-624'/>
+    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-625'/>
     <!-- const vtkSmartPointer<vtkColorMaterialHelper>* -->
-    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-565'/>
+    <pointer-type-def type-id='type-id-625' size-in-bits='64' id='type-id-566'/>
     <!-- const vtkSmartPointer<vtkFrameBufferObject2> -->
-    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-625'/>
+    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-626'/>
     <!-- const vtkSmartPointer<vtkFrameBufferObject2>* -->
-    <pointer-type-def type-id='type-id-625' size-in-bits='64' id='type-id-569'/>
+    <pointer-type-def type-id='type-id-626' size-in-bits='64' id='type-id-570'/>
     <!-- const vtkSmartPointer<vtkImageData> -->
-    <qualified-type-def type-id='type-id-511' const='yes' id='type-id-626'/>
+    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-627'/>
     <!-- const vtkSmartPointer<vtkImageData>* -->
-    <pointer-type-def type-id='type-id-626' size-in-bits='64' id='type-id-571'/>
+    <pointer-type-def type-id='type-id-627' size-in-bits='64' id='type-id-572'/>
     <!-- const vtkSmartPointer<vtkLightingHelper> -->
-    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-627'/>
+    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-628'/>
     <!-- const vtkSmartPointer<vtkLightingHelper>* -->
-    <pointer-type-def type-id='type-id-627' size-in-bits='64' id='type-id-575'/>
+    <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-576'/>
     <!-- const vtkSmartPointer<vtkLineIntegralConvolution2D> -->
-    <qualified-type-def type-id='type-id-517' const='yes' id='type-id-628'/>
+    <qualified-type-def type-id='type-id-518' const='yes' id='type-id-629'/>
     <!-- const vtkSmartPointer<vtkLineIntegralConvolution2D>* -->
-    <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-579'/>
+    <pointer-type-def type-id='type-id-629' size-in-bits='64' id='type-id-580'/>
     <!-- const vtkSmartPointer<vtkOpenGLLightMonitor> -->
-    <qualified-type-def type-id='type-id-554' const='yes' id='type-id-629'/>
+    <qualified-type-def type-id='type-id-555' const='yes' id='type-id-630'/>
     <!-- const vtkSmartPointer<vtkOpenGLLightMonitor>* -->
-    <pointer-type-def type-id='type-id-629' size-in-bits='64' id='type-id-582'/>
+    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-583'/>
     <!-- const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
-    <qualified-type-def type-id='type-id-507' const='yes' id='type-id-630'/>
+    <qualified-type-def type-id='type-id-508' const='yes' id='type-id-631'/>
     <!-- const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>* -->
-    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-586'/>
+    <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-587'/>
     <!-- const vtkSmartPointer<vtkShaderProgram2> -->
-    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-631'/>
+    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-632'/>
     <!-- const vtkSmartPointer<vtkShaderProgram2>* -->
-    <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-590'/>
+    <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-591'/>
     <!-- const vtkSmartPointer<vtkSurfaceLICComposite> -->
-    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-632'/>
+    <qualified-type-def type-id='type-id-517' const='yes' id='type-id-633'/>
     <!-- const vtkSmartPointer<vtkSurfaceLICComposite>* -->
-    <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-593'/>
+    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-594'/>
     <!-- const vtkSmartPointer<vtkTextureObject> -->
-    <qualified-type-def type-id='type-id-510' const='yes' id='type-id-633'/>
+    <qualified-type-def type-id='type-id-511' const='yes' id='type-id-634'/>
     <!-- const vtkSmartPointer<vtkTextureObject>* -->
-    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-595'/>
+    <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-596'/>
     <!-- const vtkSmartPointer<vtkTimerLog> -->
-    <qualified-type-def type-id='type-id-596' const='yes' id='type-id-634'/>
+    <qualified-type-def type-id='type-id-597' const='yes' id='type-id-635'/>
     <!-- const vtkSmartPointer<vtkTimerLog>* -->
-    <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-599'/>
+    <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-600'/>
     <!-- const vtkSmartPointerBase -->
-    <qualified-type-def type-id='type-id-557' const='yes' id='type-id-635'/>
+    <qualified-type-def type-id='type-id-558' const='yes' id='type-id-636'/>
     <!-- const vtkSmartPointerBase& -->
-    <reference-type-def kind='lvalue' type-id='type-id-635' size-in-bits='64' id='type-id-602'/>
+    <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-603'/>
     <!-- const vtkSmartPointerBase* -->
-    <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-603'/>
+    <pointer-type-def type-id='type-id-636' size-in-bits='64' id='type-id-604'/>
     <!-- const vtkSmartPointerBase::NoReference -->
-    <qualified-type-def type-id='type-id-600' const='yes' id='type-id-636'/>
+    <qualified-type-def type-id='type-id-601' const='yes' id='type-id-637'/>
     <!-- const vtkSmartPointerBase::NoReference& -->
-    <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-560'/>
+    <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-561'/>
     <!-- const vtkSurfaceLICPainter -->
-    <qualified-type-def type-id='type-id-503' const='yes' id='type-id-637'/>
+    <qualified-type-def type-id='type-id-504' const='yes' id='type-id-638'/>
     <!-- const vtkSurfaceLICPainter& -->
-    <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-524'/>
+    <reference-type-def kind='lvalue' type-id='type-id-638' size-in-bits='64' id='type-id-525'/>
     <!-- const vtkSurfaceLICPainter* -->
-    <pointer-type-def type-id='type-id-637' size-in-bits='64' id='type-id-526'/>
+    <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-527'/>
     <!-- const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface -->
-    <qualified-type-def type-id='type-id-638' const='yes' id='type-id-639'/>
+    <qualified-type-def type-id='type-id-639' const='yes' id='type-id-640'/>
     <!-- const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface& -->
-    <reference-type-def kind='lvalue' type-id='type-id-639' size-in-bits='64' id='type-id-640'/>
+    <reference-type-def kind='lvalue' type-id='type-id-640' size-in-bits='64' id='type-id-641'/>
     <!-- const vtkWeakPointer<vtkOpenGLRenderWindow> -->
-    <qualified-type-def type-id='type-id-509' const='yes' id='type-id-641'/>
+    <qualified-type-def type-id='type-id-510' const='yes' id='type-id-642'/>
     <!-- const vtkWeakPointer<vtkOpenGLRenderWindow>* -->
-    <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-605'/>
+    <pointer-type-def type-id='type-id-642' size-in-bits='64' id='type-id-606'/>
     <!-- double& -->
-    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-528'/>
+    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-529'/>
     <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-614' size-in-bits='64' id='type-id-642'/>
+    <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-643'/>
     <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl* -->
-    <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-644'/>
+    <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-645'/>
     <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
-    <reference-type-def kind='lvalue' type-id='type-id-617' size-in-bits='64' id='type-id-645'/>
+    <reference-type-def kind='lvalue' type-id='type-id-618' size-in-bits='64' id='type-id-646'/>
     <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
-    <pointer-type-def type-id='type-id-617' size-in-bits='64' id='type-id-646'/>
+    <pointer-type-def type-id='type-id-618' size-in-bits='64' id='type-id-647'/>
     <!-- unsigned char* -->
-    <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-647'/>
+    <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-648'/>
     <!-- vtkBackgroundColorMonitor& -->
-    <reference-type-def kind='lvalue' type-id='type-id-648' size-in-bits='64' id='type-id-649'/>
+    <reference-type-def kind='lvalue' type-id='type-id-649' size-in-bits='64' id='type-id-650'/>
     <!-- vtkBackgroundColorMonitor* -->
-    <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-559'/>
+    <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-560'/>
     <!-- vtkBoundingBox& -->
-    <reference-type-def kind='lvalue' type-id='type-id-607' size-in-bits='64' id='type-id-650'/>
+    <reference-type-def kind='lvalue' type-id='type-id-608' size-in-bits='64' id='type-id-651'/>
     <!-- vtkBoundingBox* -->
-    <pointer-type-def type-id='type-id-607' size-in-bits='64' id='type-id-608'/>
+    <pointer-type-def type-id='type-id-608' size-in-bits='64' id='type-id-609'/>
     <!-- vtkCellData* -->
-    <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-265'/>
+    <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-265'/>
     <!-- vtkColorMaterialHelper& -->
-    <reference-type-def kind='lvalue' type-id='type-id-652' size-in-bits='64' id='type-id-653'/>
+    <reference-type-def kind='lvalue' type-id='type-id-653' size-in-bits='64' id='type-id-654'/>
     <!-- vtkColorMaterialHelper* -->
-    <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-564'/>
+    <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-565'/>
     <!-- vtkCompositeDataSet* -->
-    <pointer-type-def type-id='type-id-654' size-in-bits='64' id='type-id-655'/>
+    <pointer-type-def type-id='type-id-655' size-in-bits='64' id='type-id-656'/>
     <!-- vtkFieldData* -->
-    <pointer-type-def type-id='type-id-656' size-in-bits='64' id='type-id-657'/>
+    <pointer-type-def type-id='type-id-657' size-in-bits='64' id='type-id-658'/>
     <!-- vtkFrameBufferObject2& -->
-    <reference-type-def kind='lvalue' type-id='type-id-412' size-in-bits='64' id='type-id-658'/>
+    <reference-type-def kind='lvalue' type-id='type-id-413' size-in-bits='64' id='type-id-659'/>
     <!-- vtkImageData& -->
-    <reference-type-def kind='lvalue' type-id='type-id-232' size-in-bits='64' id='type-id-659'/>
+    <reference-type-def kind='lvalue' type-id='type-id-232' size-in-bits='64' id='type-id-660'/>
     <!-- vtkLightingHelper& -->
-    <reference-type-def kind='lvalue' type-id='type-id-660' size-in-bits='64' id='type-id-661'/>
+    <reference-type-def kind='lvalue' type-id='type-id-661' size-in-bits='64' id='type-id-662'/>
     <!-- vtkLightingHelper* -->
-    <pointer-type-def type-id='type-id-660' size-in-bits='64' id='type-id-574'/>
+    <pointer-type-def type-id='type-id-661' size-in-bits='64' id='type-id-575'/>
     <!-- vtkLineIntegralConvolution2D& -->
-    <reference-type-def kind='lvalue' type-id='type-id-381' size-in-bits='64' id='type-id-662'/>
+    <reference-type-def kind='lvalue' type-id='type-id-382' size-in-bits='64' id='type-id-663'/>
     <!-- vtkMinimalStandardRandomSequence* -->
-    <pointer-type-def type-id='type-id-663' size-in-bits='64' id='type-id-664'/>
+    <pointer-type-def type-id='type-id-664' size-in-bits='64' id='type-id-665'/>
     <!-- vtkOpenGLLightMonitor& -->
-    <reference-type-def kind='lvalue' type-id='type-id-665' size-in-bits='64' id='type-id-666'/>
+    <reference-type-def kind='lvalue' type-id='type-id-666' size-in-bits='64' id='type-id-667'/>
     <!-- vtkOpenGLLightMonitor* -->
-    <pointer-type-def type-id='type-id-665' size-in-bits='64' id='type-id-581'/>
+    <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-582'/>
     <!-- vtkOpenGLModelViewProjectionMonitor& -->
-    <reference-type-def kind='lvalue' type-id='type-id-667' size-in-bits='64' id='type-id-668'/>
+    <reference-type-def kind='lvalue' type-id='type-id-668' size-in-bits='64' id='type-id-669'/>
     <!-- vtkOpenGLModelViewProjectionMonitor* -->
-    <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-585'/>
+    <pointer-type-def type-id='type-id-668' size-in-bits='64' id='type-id-586'/>
     <!-- vtkOpenGLRenderWindow& -->
-    <reference-type-def kind='lvalue' type-id='type-id-242' size-in-bits='64' id='type-id-669'/>
+    <reference-type-def kind='lvalue' type-id='type-id-242' size-in-bits='64' id='type-id-670'/>
     <!-- vtkScalarsToColors* -->
-    <pointer-type-def type-id='type-id-670' size-in-bits='64' id='type-id-671'/>
+    <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-672'/>
     <!-- vtkShaderProgram2& -->
-    <reference-type-def kind='lvalue' type-id='type-id-257' size-in-bits='64' id='type-id-672'/>
+    <reference-type-def kind='lvalue' type-id='type-id-257' size-in-bits='64' id='type-id-673'/>
     <!-- vtkSmartPointer<vtkBackgroundColorMonitor>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-508' size-in-bits='64' id='type-id-562'/>
+    <reference-type-def kind='lvalue' type-id='type-id-509' size-in-bits='64' id='type-id-563'/>
     <!-- vtkSmartPointer<vtkBackgroundColorMonitor>* -->
-    <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-558'/>
+    <pointer-type-def type-id='type-id-509' size-in-bits='64' id='type-id-559'/>
     <!-- vtkSmartPointer<vtkColorMaterialHelper>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-566'/>
+    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-567'/>
     <!-- vtkSmartPointer<vtkColorMaterialHelper>* -->
-    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-563'/>
+    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-564'/>
     <!-- vtkSmartPointer<vtkFrameBufferObject2>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-568'/>
+    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-569'/>
     <!-- vtkSmartPointer<vtkFrameBufferObject2>* -->
-    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-567'/>
+    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-568'/>
     <!-- vtkSmartPointer<vtkImageData>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-511' size-in-bits='64' id='type-id-572'/>
+    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-573'/>
     <!-- vtkSmartPointer<vtkImageData>* -->
-    <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-570'/>
+    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-571'/>
     <!-- vtkSmartPointer<vtkLightingHelper>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-576'/>
+    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-577'/>
     <!-- vtkSmartPointer<vtkLightingHelper>* -->
-    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-573'/>
+    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-574'/>
     <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-578'/>
+    <reference-type-def kind='lvalue' type-id='type-id-518' size-in-bits='64' id='type-id-579'/>
     <!-- vtkSmartPointer<vtkLineIntegralConvolution2D>* -->
-    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-577'/>
+    <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-578'/>
     <!-- vtkSmartPointer<vtkOpenGLLightMonitor>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-554' size-in-bits='64' id='type-id-583'/>
+    <reference-type-def kind='lvalue' type-id='type-id-555' size-in-bits='64' id='type-id-584'/>
     <!-- vtkSmartPointer<vtkOpenGLLightMonitor>* -->
-    <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-580'/>
+    <pointer-type-def type-id='type-id-555' size-in-bits='64' id='type-id-581'/>
     <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-507' size-in-bits='64' id='type-id-587'/>
+    <reference-type-def kind='lvalue' type-id='type-id-508' size-in-bits='64' id='type-id-588'/>
     <!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>* -->
-    <pointer-type-def type-id='type-id-507' size-in-bits='64' id='type-id-584'/>
+    <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-585'/>
     <!-- vtkSmartPointer<vtkShaderProgram2>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-589'/>
+    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-590'/>
     <!-- vtkSmartPointer<vtkShaderProgram2>* -->
-    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-588'/>
+    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-589'/>
     <!-- vtkSmartPointer<vtkSurfaceLICComposite>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-592'/>
+    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-593'/>
     <!-- vtkSmartPointer<vtkSurfaceLICComposite>* -->
-    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-591'/>
+    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-592'/>
     <!-- vtkSmartPointer<vtkTextureObject>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-510' size-in-bits='64' id='type-id-519'/>
+    <reference-type-def kind='lvalue' type-id='type-id-511' size-in-bits='64' id='type-id-520'/>
     <!-- vtkSmartPointer<vtkTextureObject>* -->
-    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-594'/>
+    <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-595'/>
     <!-- vtkSmartPointer<vtkTimerLog>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-596' size-in-bits='64' id='type-id-673'/>
+    <reference-type-def kind='lvalue' type-id='type-id-597' size-in-bits='64' id='type-id-674'/>
     <!-- vtkSmartPointer<vtkTimerLog>* -->
-    <pointer-type-def type-id='type-id-596' size-in-bits='64' id='type-id-597'/>
+    <pointer-type-def type-id='type-id-597' size-in-bits='64' id='type-id-598'/>
     <!-- vtkSmartPointerBase& -->
-    <reference-type-def kind='lvalue' type-id='type-id-557' size-in-bits='64' id='type-id-674'/>
+    <reference-type-def kind='lvalue' type-id='type-id-558' size-in-bits='64' id='type-id-675'/>
     <!-- vtkSmartPointerBase* -->
-    <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-601'/>
+    <pointer-type-def type-id='type-id-558' size-in-bits='64' id='type-id-602'/>
     <!-- vtkSurfaceLICComposite& -->
-    <reference-type-def kind='lvalue' type-id='type-id-476' size-in-bits='64' id='type-id-675'/>
+    <reference-type-def kind='lvalue' type-id='type-id-477' size-in-bits='64' id='type-id-676'/>
     <!-- vtkSurfaceLICPainter::vtkInternals* -->
-    <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-518'/>
+    <pointer-type-def type-id='type-id-506' size-in-bits='64' id='type-id-519'/>
     <!-- vtkSurfaceLICPainterUtil::RandomNoise2D* -->
-    <pointer-type-def type-id='type-id-676' size-in-bits='64' id='type-id-677'/>
+    <pointer-type-def type-id='type-id-677' size-in-bits='64' id='type-id-678'/>
     <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface* -->
-    <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-678'/>
+    <pointer-type-def type-id='type-id-639' size-in-bits='64' id='type-id-679'/>
     <!-- vtkTextureObject& -->
-    <reference-type-def kind='lvalue' type-id='type-id-270' size-in-bits='64' id='type-id-679'/>
+    <reference-type-def kind='lvalue' type-id='type-id-270' size-in-bits='64' id='type-id-680'/>
     <!-- vtkTimerLog& -->
-    <reference-type-def kind='lvalue' type-id='type-id-680' size-in-bits='64' id='type-id-681'/>
+    <reference-type-def kind='lvalue' type-id='type-id-681' size-in-bits='64' id='type-id-682'/>
     <!-- vtkTimerLog* -->
-    <pointer-type-def type-id='type-id-680' size-in-bits='64' id='type-id-598'/>
+    <pointer-type-def type-id='type-id-681' size-in-bits='64' id='type-id-599'/>
     <!-- vtkUniformVariables* -->
-    <pointer-type-def type-id='type-id-682' size-in-bits='64' id='type-id-683'/>
+    <pointer-type-def type-id='type-id-683' size-in-bits='64' id='type-id-684'/>
     <!-- vtkWeakPointer<vtkOpenGLRenderWindow>& -->
-    <reference-type-def kind='lvalue' type-id='type-id-509' size-in-bits='64' id='type-id-606'/>
+    <reference-type-def kind='lvalue' type-id='type-id-510' size-in-bits='64' id='type-id-607'/>
     <!-- vtkWeakPointer<vtkOpenGLRenderWindow>* -->
-    <pointer-type-def type-id='type-id-509' size-in-bits='64' id='type-id-604'/>
+    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-605'/>
     <!-- vtkWindow* -->
-    <pointer-type-def type-id='type-id-684' size-in-bits='64' id='type-id-527'/>
+    <pointer-type-def type-id='type-id-685' size-in-bits='64' id='type-id-528'/>
     <!-- class vtkBackgroundColorMonitor -->
-    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-648'/>
+    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-649'/>
     <!-- class vtkCellData -->
-    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-651'/>
+    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-652'/>
     <!-- class vtkColorMaterialHelper -->
-    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-652'/>
+    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-653'/>
     <!-- class vtkCompositeDataSet -->
-    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-654'>
+    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-655'>
       <member-function access='private' static='yes'>
         <!-- vtkCompositeDataSet* vtkCompositeDataSet::SafeDownCast() -->
         <function-decl name='SafeDownCast' mangled-name='_ZN19vtkCompositeDataSet12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkCompositeDataSet.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-41'/>
           <!-- vtkCompositeDataSet* -->
-          <return type-id='type-id-655'/>
+          <return type-id='type-id-656'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkFieldData -->
-    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-656'>
+    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-657'>
       <member-function access='private'>
         <!-- int vtkFieldData::GetNumberOfArrays() -->
         <function-decl name='GetNumberOfArrays' mangled-name='_ZN12vtkFieldData17GetNumberOfArraysEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkFieldData.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkFieldData*' -->
-          <parameter type-id='type-id-657' is-artificial='yes'/>
+          <parameter type-id='type-id-658' is-artificial='yes'/>
           <!-- int -->
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkLightingHelper -->
-    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-660'>
+    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-661'>
+      <member-type access='private'>
+        <!-- enum vtkLightingHelper::__anonymous_enum__ -->
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='42' column='1' id='type-id-686'>
+          <underlying-type type-id='type-id-24'/>
+          <enumerator name='VTK_MAX_LIGHTS' value='8'/>
+        </enum-decl>
+      </member-type>
       <member-function access='private'>
         <!-- void vtkLightingHelper::EncodeLightState() -->
         <function-decl name='EncodeLightState' mangled-name='_ZN17vtkLightingHelper16EncodeLightStateEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkLightingHelper*' -->
-          <parameter type-id='type-id-574' is-artificial='yes'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkMath -->
-    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-685'>
+    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-687'>
       <member-function access='private' static='yes'>
         <!-- void vtkMath::UninitializeBounds() -->
         <function-decl name='UninitializeBounds' mangled-name='_ZN7vtkMath18UninitializeBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkMath.h' line='849' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -15564,37 +15583,37 @@ 
       </member-function>
     </class-decl>
     <!-- class vtkMinimalStandardRandomSequence -->
-    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-663'/>
+    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-664'/>
     <!-- class vtkOpenGLLightMonitor -->
-    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-665'/>
+    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-666'/>
     <!-- class vtkOpenGLModelViewProjectionMonitor -->
-    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-667'/>
+    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-668'/>
     <!-- class vtkScalarsToColors -->
-    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-670'>
+    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-671'>
       <member-function access='private' static='yes'>
         <!-- vtkScalarsToColors* vtkScalarsToColors::SafeDownCast() -->
         <function-decl name='SafeDownCast' mangled-name='_ZN18vtkScalarsToColors12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkScalarsToColors.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- parameter of type 'vtkObjectBase*' -->
           <parameter type-id='type-id-41'/>
           <!-- vtkScalarsToColors* -->
-          <return type-id='type-id-671'/>
+          <return type-id='type-id-672'/>
         </function-decl>
       </member-function>
     </class-decl>
     <!-- class vtkTimerLog -->
-    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-680'>
+    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-681'>
       <data-member access='protected' static='yes'>
         <!-- static int vtkTimerLog::Logging -->
         <var-decl name='Logging' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/System/vtkTimerLog.h' line='169' column='1'/>
       </data-member>
     </class-decl>
     <!-- class vtkUniformVariables -->
-    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-682'>
+    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-683'>
       <member-function access='private'>
         <!-- void vtkUniformVariables::SetUniformft<int>(const char*, int, int*) -->
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'int' -->
@@ -15609,7 +15628,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<double>(const char*, int, double*) -->
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'int' -->
@@ -15624,7 +15643,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<float>(const char*, int, float*) -->
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'int' -->
@@ -15639,7 +15658,7 @@ 
         <!-- void vtkUniformVariables::SetUniformit<int>(const char*, int, int*) -->
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'int' -->
@@ -15654,7 +15673,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<int>(const char*, int) -->
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'int' -->
@@ -15667,7 +15686,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<double>(const char*, double) -->
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'double' -->
@@ -15680,7 +15699,7 @@ 
         <!-- void vtkUniformVariables::SetUniformft<float>(const char*, float) -->
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'float' -->
@@ -15693,7 +15712,7 @@ 
         <!-- void vtkUniformVariables::SetUniformit<int>(const char*, int) -->
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
           <!-- implicit parameter of type 'vtkUniformVariables*' -->
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'int' -->
@@ -15704,14 +15723,14 @@ 
       </member-function>
     </class-decl>
     <!-- struct vtkWindow -->
-    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-684'/>
+    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-685'/>
     <!-- namespace std -->
     <namespace-decl name='std'>
       <!-- struct std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-614'>
+      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-615'>
         <member-type access='public'>
           <!-- struct std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl -->
-          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-643'>
+          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-644'>
             <!-- class std::allocator<vtkPixelExtent> -->
             <base-class access='public' layout-offset-in-bits='0' type-id='type-id-149'/>
             <data-member access='public' layout-offset-in-bits='0'>
@@ -15730,7 +15749,7 @@ 
               <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl::_Vector_impl() -->
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl*' -->
-                <parameter type-id='type-id-644' is-artificial='yes'/>
+                <parameter type-id='type-id-645' is-artificial='yes'/>
                 <!-- void -->
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -15739,7 +15758,7 @@ 
               <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl::_Vector_impl(const std::allocator<vtkPixelExtent>&) -->
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
                 <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl*' -->
-                <parameter type-id='type-id-644' is-artificial='yes'/>
+                <parameter type-id='type-id-645' is-artificial='yes'/>
                 <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
                 <parameter type-id='type-id-151'/>
                 <!-- void -->
@@ -15750,13 +15769,13 @@ 
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_impl -->
-          <var-decl name='_M_impl' type-id='type-id-643' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-644' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_base() -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -15765,7 +15784,7 @@ 
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_base(const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
             <parameter type-id='type-id-151'/>
             <!-- void -->
@@ -15776,7 +15795,7 @@ 
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_base(unsigned long int, const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
@@ -15789,7 +15808,7 @@ 
           <!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::~_Vector_base(int) -->
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -15800,7 +15819,7 @@ 
           <!-- vtkPixelExtent* std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_allocate(unsigned long int) -->
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- vtkPixelExtent* -->
@@ -15811,7 +15830,7 @@ 
           <!-- std::allocator<vtkPixelExtent>& std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_get_Tp_allocator() -->
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <!-- std::allocator<vtkPixelExtent>& -->
             <return type-id='type-id-202'/>
           </function-decl>
@@ -15820,7 +15839,7 @@ 
           <!-- void std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_deallocate(vtkPixelExtent*, unsigned long int) -->
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE13_M_deallocateEPS0_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <!-- parameter of type 'vtkPixelExtent*' -->
             <parameter type-id='type-id-44'/>
             <!-- parameter of type 'unsigned long int' -->
@@ -15831,14 +15850,14 @@ 
         </member-function>
       </class-decl>
       <!-- class std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-617'>
+      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-618'>
         <!-- struct std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-614'/>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-615'/>
         <member-function access='private'>
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector() -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -15847,7 +15866,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector(const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- parameter of type 'const std::allocator<vtkPixelExtent>&' -->
             <parameter type-id='type-id-151'/>
             <!-- void -->
@@ -15858,7 +15877,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector(unsigned long int, const vtkPixelExtent&, const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- parameter of type 'const vtkPixelExtent&' -->
@@ -15873,9 +15892,9 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector(const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
-            <parameter type-id='type-id-619'/>
+            <parameter type-id='type-id-620'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -15884,7 +15903,7 @@ 
           <!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::~vector(int) -->
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -15895,13 +15914,13 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_range_initialize<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::forward_iterator_tag) -->
           <function-decl name='_M_range_initialize&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::forward_iterator_tag' -->
-            <parameter type-id='type-id-288'/>
+            <parameter type-id='type-id-289'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -15910,13 +15929,13 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_initialize_dispatch<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::__false_type) -->
           <function-decl name='_M_initialize_dispatch&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::__false_type' -->
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-288'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -15925,7 +15944,7 @@ 
           <!-- void std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::vector<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, const std::allocator<vtkPixelExtent>&) -->
           <function-decl name='vector&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
             <parameter type-id='type-id-133'/>
             <!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
@@ -15940,7 +15959,7 @@ 
           <!-- size_t std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::size() -->
           <function-decl name='size' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-620' is-artificial='yes'/>
+            <parameter type-id='type-id-621' is-artificial='yes'/>
             <!-- typedef size_t -->
             <return type-id='type-id-50'/>
           </function-decl>
@@ -15949,7 +15968,7 @@ 
           <!-- vtkPixelExtent& std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >::operator[](unsigned long int) -->
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <!-- parameter of type 'unsigned long int' -->
             <parameter type-id='type-id-4'/>
             <!-- vtkPixelExtent& -->
@@ -15958,13 +15977,13 @@ 
         </member-function>
       </class-decl>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-686'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-688'/>
       <!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > > -->
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-687'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-689'/>
       <!-- bool std::operator==<char, std::char_traits<char>, std::allocator<char> >(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const char*) -->
       <function-decl name='operator==&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='2265' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
-        <parameter type-id='type-id-368'/>
+        <parameter type-id='type-id-369'/>
         <!-- parameter of type 'const char*' -->
         <parameter type-id='type-id-64'/>
         <!-- bool -->
@@ -15973,7 +15992,7 @@ 
       <!-- bool std::operator!=<char, std::char_traits<char>, std::allocator<char> >(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const char*) -->
       <function-decl name='operator!=&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='2302' column='1' visibility='default' binding='global' size-in-bits='64'>
         <!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
-        <parameter type-id='type-id-368'/>
+        <parameter type-id='type-id-369'/>
         <!-- parameter of type 'const char*' -->
         <parameter type-id='type-id-64'/>
         <!-- bool -->
@@ -16018,16 +16037,16 @@ 
     <!-- namespace vtkSurfaceLICPainterUtil -->
     <namespace-decl name='vtkSurfaceLICPainterUtil'>
       <!-- class vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface -->
-      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-638'>
+      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-639'>
         <data-member access='private' layout-offset-in-bits='0'>
           <!-- vtkMinimalStandardRandomSequence* vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::RNG -->
-          <var-decl name='RNG' type-id='type-id-664' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
+          <var-decl name='RNG' type-id='type-id-665' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::RandomNumberGeneratorInterface() -->
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -16036,7 +16055,7 @@ 
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::~RandomNumberGeneratorInterface(int) -->
           <function-decl name='~RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -16047,9 +16066,9 @@ 
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::RandomNumberGeneratorInterface(const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface&) -->
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <!-- parameter of type 'const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface&' -->
-            <parameter type-id='type-id-640'/>
+            <parameter type-id='type-id-641'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -16058,7 +16077,7 @@ 
           <!-- void vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::SetSeed(int) -->
           <function-decl name='SetSeed' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface7SetSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <!-- artificial parameter of type 'int' -->
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <!-- void -->
@@ -16069,17 +16088,17 @@ 
           <!-- double vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface::GetRandomNumber() -->
           <function-decl name='GetRandomNumber' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface15GetRandomNumberEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='273' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface*' -->
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <!-- double -->
             <return type-id='type-id-15'/>
           </function-decl>
         </member-function>
       </class-decl>
       <!-- class vtkSurfaceLICPainterUtil::RandomNoise2D -->
-      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-676'>
+      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-677'>
         <member-type access='private'>
           <!-- enum vtkSurfaceLICPainterUtil::RandomNoise2D::__anonymous_enum__ -->
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-688'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-690'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='UNIFORM' value='0'/>
             <enumerator name='GAUSSIAN' value='1'/>
@@ -16088,17 +16107,17 @@ 
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface vtkSurfaceLICPainterUtil::RandomNoise2D::ValueGen -->
-          <var-decl name='ValueGen' type-id='type-id-638' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
+          <var-decl name='ValueGen' type-id='type-id-639' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
           <!-- vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface vtkSurfaceLICPainterUtil::RandomNoise2D::ProbGen -->
-          <var-decl name='ProbGen' type-id='type-id-638' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
+          <var-decl name='ProbGen' type-id='type-id-639' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <!-- vtkSurfaceLICPainterUtil::RandomNoise2D::RandomNoise2D() -->
           <function-decl name='RandomNoise2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <!-- void -->
             <return type-id='type-id-30'/>
           </function-decl>
@@ -16107,7 +16126,7 @@ 
           <!-- void vtkSurfaceLICPainterUtil::RandomNoise2D::GetValidDimensionAndGrainSize(int, int&, int&) -->
           <function-decl name='GetValidDimensionAndGrainSize' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D29GetValidDimensionAndGrainSizeEiRiS1_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='387' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int&' -->
@@ -16122,7 +16141,7 @@ 
           <!-- int vtkSurfaceLICPainterUtil::RandomNoise2D::ShouldGenerateValue(double) -->
           <function-decl name='ShouldGenerateValue' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D19ShouldGenerateValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <!-- parameter of type 'double' -->
             <parameter type-id='type-id-15'/>
             <!-- int -->
@@ -16133,7 +16152,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::GenerateGaussian(int, int, float, float, int, double, float, int) -->
           <function-decl name='GenerateGaussian' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D16GenerateGaussianEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int' -->
@@ -16158,7 +16177,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::GeneratePerlin(int, int, float, float, int, double, float, int) -->
           <function-decl name='GeneratePerlin' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D14GeneratePerlinEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int' -->
@@ -16183,7 +16202,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::GenerateUniform(int, int, float, float, int, double, float, int) -->
           <function-decl name='GenerateUniform' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D15GenerateUniformEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='342' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int' -->
@@ -16208,7 +16227,7 @@ 
           <!-- float* vtkSurfaceLICPainterUtil::RandomNoise2D::Generate(int, int&, int&, float, float, int, double, float, int) -->
           <function-decl name='Generate' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D8GenerateEiRiS1_ffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
             <!-- implicit parameter of type 'vtkSurfaceLICPainterUtil::RandomNoise2D*' -->
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <!-- parameter of type 'int' -->
             <parameter type-id='type-id-17'/>
             <!-- parameter of type 'int&' -->
@@ -16237,9 +16256,9 @@ 
         <!-- parameter of type 'double' -->
         <parameter type-id='type-id-15'/>
         <!-- parameter of type 'const double&' -->
-        <parameter type-id='type-id-613'/>
+        <parameter type-id='type-id-614'/>
         <!-- parameter of type 'const double&' -->
-        <parameter type-id='type-id-613'/>
+        <parameter type-id='type-id-614'/>
         <!-- double -->
         <return type-id='type-id-15'/>
       </function-decl>
@@ -16254,25 +16273,25 @@ 
     <!-- namespace __gnu_cxx -->
     <namespace-decl name='__gnu_cxx'>
       <!-- class __gnu_cxx::__normal_iterator<const vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-689'/>
+      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-691'/>
       <!-- class __gnu_cxx::__normal_iterator<vtkPixelExtent*, std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > > -->
-      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-690'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-692'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <!-- class vtkTextureIO -->
-    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-691'>
+    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-693'>
       <member-function access='private' static='yes'>
         <!-- void vtkTextureIO::Write(vtkTextureObject*, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, const double*) -->
         <function-decl name='Write' mangled-name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd'>
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
           <parameter type-id='type-id-166'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-610'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
@@ -16283,11 +16302,11 @@ 
           <!-- parameter of type 'const char*' -->
           <parameter type-id='type-id-64'/>
           <!-- parameter of type 'vtkTextureObject*' -->
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <!-- parameter of type 'const unsigned int*' -->
           <parameter type-id='type-id-54'/>
           <!-- parameter of type 'const double*' -->
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-610'/>
           <!-- void -->
           <return type-id='type-id-30'/>
         </function-decl>
diff --git a/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi b/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi
index 18a4964b..fc056b3a 100644
--- a/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi
+++ b/tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi
@@ -26818,6 +26818,13 @@ 
       </class-decl>
       <!-- class tcmalloc::ThreadCache -->
       <class-decl name='ThreadCache' size-in-bits='17408' visibility='default' filepath='src/thread_cache.h' line='66' column='1' id='type-id-1417'>
+        <member-type access='private'>
+          <!-- enum tcmalloc::ThreadCache::__anonymous_enum__ -->
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='src/thread_cache.h' line='69' column='1' id='type-id-1510'>
+            <underlying-type type-id='type-id-240'/>
+            <enumerator name='have_tls' value='1'/>
+          </enum-decl>
+        </member-type>
         <member-type access='private'>
           <!-- class tcmalloc::ThreadCache::FreeList -->
           <class-decl name='FreeList' size-in-bits='192' visibility='default' filepath='src/thread_cache.h' line='132' column='1' id='type-id-1260'>
@@ -26980,7 +26987,7 @@ 
         </member-type>
         <member-type access='private'>
           <!-- struct tcmalloc::ThreadCache::ThreadLocalData -->
-          <class-decl name='ThreadLocalData' size-in-bits='128' is-struct='yes' visibility='default' filepath='src/thread_cache.h' line='262' column='1' id='type-id-1510'>
+          <class-decl name='ThreadLocalData' size-in-bits='128' is-struct='yes' visibility='default' filepath='src/thread_cache.h' line='262' column='1' id='type-id-1511'>
             <data-member access='public' layout-offset-in-bits='0'>
               <!-- tcmalloc::ThreadCache* tcmalloc::ThreadCache::ThreadLocalData::heap -->
               <var-decl name='heap' type-id='type-id-1468' visibility='default' filepath='src/thread_cache.h' line='263' column='1'/>
@@ -27001,7 +27008,7 @@ 
         </data-member>
         <data-member access='private' static='yes'>
           <!-- static tcmalloc::ThreadCache::ThreadLocalData tcmalloc::ThreadCache::threadlocal_data_ -->
-          <var-decl name='threadlocal_data_' type-id='type-id-1510' mangled-name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' visibility='default' filepath='src/thread_cache.h' line='272' column='1' elf-symbol-id='_ZN8tcmalloc11ThreadCache17threadlocal_data_E'/>
+          <var-decl name='threadlocal_data_' type-id='type-id-1511' mangled-name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' visibility='default' filepath='src/thread_cache.h' line='272' column='1' elf-symbol-id='_ZN8tcmalloc11ThreadCache17threadlocal_data_E'/>
         </data-member>
         <data-member access='private' static='yes'>
           <!-- static bool tcmalloc::ThreadCache::tsd_inited_ -->
diff --git a/tests/data/test-diff-dwarf/PR25058-liblttng-ctl-report-1.txt b/tests/data/test-diff-dwarf/PR25058-liblttng-ctl-report-1.txt
index 90248ab7..8986e65d 100644
--- a/tests/data/test-diff-dwarf/PR25058-liblttng-ctl-report-1.txt
+++ b/tests/data/test-diff-dwarf/PR25058-liblttng-ctl-report-1.txt
@@ -479,7 +479,21 @@  Variables changes summary: 0 Removed, 0 Changed, 3 Added variables
                               pointed to type 'struct filter_node' changed, as being reported
                         type of 'struct {op_type type; filter_node* lchild; filter_node* rchild;} op' changed:
                           type size hasn't changed
-                          2 data member changes:
+                          3 data member changes:
+                            type of 'op_type type' changed:
+                              type size hasn't changed
+                              5 enumerator deletions:
+                                'op_type::AST_OP_RSHIFT' value '6'
+                                'op_type::AST_OP_LSHIFT' value '7'
+                                'op_type::AST_OP_BIN_AND' value '10'
+                                'op_type::AST_OP_BIN_OR' value '11'
+                                'op_type::AST_OP_BIN_XOR' value '12'
+                              5 enumerator insertions:
+                                'op_type::AST_OP_BIT_RSHIFT' value '6'
+                                'op_type::AST_OP_BIT_LSHIFT' value '7'
+                                'op_type::AST_OP_BIT_AND' value '10'
+                                'op_type::AST_OP_BIT_OR' value '11'
+                                'op_type::AST_OP_BIT_XOR' value '12'
                             type of 'filter_node* lchild' changed:
                               pointed to type 'struct filter_node' changed, as being reported
                             type of 'filter_node* rchild' changed:
@@ -491,7 +505,13 @@  Variables changes summary: 0 Removed, 0 Changed, 3 Added variables
                               pointed to type 'struct filter_node' changed, as being reported
                         type of 'struct {unary_op_type type; filter_node* child;} unary_op' changed:
                           type size hasn't changed
-                          1 data member change:
+                          2 data member changes:
+                            type of 'unary_op_type type' changed:
+                              type size hasn't changed
+                              1 enumerator deletion:
+                                'unary_op_type::AST_UNARY_BIN_NOT' value '4'
+                              1 enumerator insertion:
+                                'unary_op_type::AST_UNARY_BIT_NOT' value '4'
                             type of 'filter_node* child' changed:
                               pointed to type 'struct filter_node' changed, as being reported
                 'cds_list_head allocated_nodes' offset changed from 576 to 640 (in bits) (by +64 bits)
diff --git a/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi b/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
index 1a1e234c..d6d48392 100644
--- a/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
+++ b/tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
@@ -2103,6 +2103,17 @@ 
           <enumerator name='NumberOfMinificationModes' value='6'/>
         </enum-decl>
       </member-type>
+      <member-type access='private'>
+        <enum-decl name='__anonymous_enum__2' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkTextureObject.h' line='88' column='1' id='type-id-273'>
+          <underlying-type type-id='type-id-24'/>
+          <enumerator name='Native' value='0'/>
+          <enumerator name='Fixed16' value='1'/>
+          <enumerator name='Fixed24' value='2'/>
+          <enumerator name='Fixed32' value='3'/>
+          <enumerator name='Float32' value='4'/>
+          <enumerator name='NumberOfDepthFormats' value='5'/>
+        </enum-decl>
+      </member-type>
       <member-function access='private' static='yes'>
         <function-decl name='IsSupported' mangled-name='_ZN16vtkTextureObject11IsSupportedEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkTextureObject.h' line='459' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-35'/>
@@ -2164,7 +2175,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='char_traits&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='238' column='1' id='type-id-273'>
+      <class-decl name='char_traits&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='238' column='1' id='type-id-274'>
         <member-type access='public'>
           <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='239' column='1' id='type-id-157'/>
         </member-type>
@@ -2193,7 +2204,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <enum-decl name='_Ios_Fmtflags' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='60' column='1' id='type-id-274'>
+      <enum-decl name='_Ios_Fmtflags' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='60' column='1' id='type-id-275'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_boolalpha' value='1'/>
         <enumerator name='_S_dec' value='2'/>
@@ -2215,7 +2226,7 @@ 
         <enumerator name='_S_floatfield' value='260'/>
         <enumerator name='_S_ios_fmtflags_end' value='65536'/>
       </enum-decl>
-      <enum-decl name='_Ios_Openmode' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='112' column='1' id='type-id-275'>
+      <enum-decl name='_Ios_Openmode' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='112' column='1' id='type-id-276'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_app' value='1'/>
         <enumerator name='_S_ate' value='2'/>
@@ -2225,7 +2236,7 @@ 
         <enumerator name='_S_trunc' value='32'/>
         <enumerator name='_S_ios_openmode_end' value='65536'/>
       </enum-decl>
-      <enum-decl name='_Ios_Iostate' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='152' column='1' id='type-id-276'>
+      <enum-decl name='_Ios_Iostate' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='152' column='1' id='type-id-277'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_goodbit' value='0'/>
         <enumerator name='_S_badbit' value='1'/>
@@ -2233,16 +2244,16 @@ 
         <enumerator name='_S_failbit' value='4'/>
         <enumerator name='_S_ios_iostate_end' value='65536'/>
       </enum-decl>
-      <enum-decl name='_Ios_Seekdir' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='189' column='1' id='type-id-277'>
+      <enum-decl name='_Ios_Seekdir' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='189' column='1' id='type-id-278'>
         <underlying-type type-id='type-id-24'/>
         <enumerator name='_S_beg' value='0'/>
         <enumerator name='_S_cur' value='1'/>
         <enumerator name='_S_end' value='2'/>
         <enumerator name='_S_ios_seekdir_end' value='65536'/>
       </enum-decl>
-      <typedef-decl name='streamoff' type-id='type-id-20' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='88' column='1' id='type-id-278'/>
-      <typedef-decl name='streamsize' type-id='type-id-105' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='98' column='1' id='type-id-279'/>
-      <class-decl name='_Destroy_aux&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='106' column='1' id='type-id-280'>
+      <typedef-decl name='streamoff' type-id='type-id-20' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='88' column='1' id='type-id-279'/>
+      <typedef-decl name='streamsize' type-id='type-id-105' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='98' column='1' id='type-id-280'/>
+      <class-decl name='_Destroy_aux&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='106' column='1' id='type-id-281'>
         <member-function access='public' static='yes'>
           <function-decl name='__destroy&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-133'/>
@@ -2259,8 +2270,8 @@ 
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='__destroy&lt;vtkPixelBufferObject**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-281'/>
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-282'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -2272,7 +2283,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' size-in-bits='256' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='95' column='1' id='type-id-282'>
+      <class-decl name='_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' size-in-bits='256' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='95' column='1' id='type-id-283'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_cur' type-id='type-id-44' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='111' column='1'/>
         </data-member>
@@ -2287,7 +2298,7 @@ 
         </data-member>
         <member-function access='public'>
           <function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <parameter type-id='type-id-44'/>
             <parameter type-id='type-id-250'/>
             <return type-id='type-id-30'/>
@@ -2295,13 +2306,13 @@ 
         </member-function>
         <member-function access='public'>
           <function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <parameter type-id='type-id-135'/>
             <return type-id='type-id-30'/>
           </function-decl>
@@ -2313,35 +2324,35 @@ 
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_set_node' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_E11_M_set_nodeEPPS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <parameter type-id='type-id-250'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator*' mangled-name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EdeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-284' is-artificial='yes'/>
+            <parameter type-id='type-id-285' is-artificial='yes'/>
             <return type-id='type-id-45'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator++' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EppEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-283' is-artificial='yes'/>
-            <return type-id='type-id-285'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
+            <return type-id='type-id-286'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator+' mangled-name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EplEl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-284' is-artificial='yes'/>
+            <parameter type-id='type-id-285' is-artificial='yes'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator+=' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EpLEl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-283' is-artificial='yes'/>
+            <parameter type-id='type-id-284' is-artificial='yes'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-285'/>
+            <return type-id='type-id-286'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -2477,7 +2488,7 @@ 
           </class-decl>
         </member-type>
         <member-type access='protected'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='465' column='1' id='type-id-286'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='465' column='1' id='type-id-287'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='_S_initial_map_size' value='8'/>
           </enum-decl>
@@ -2700,9 +2711,9 @@ 
           <function-decl name='_M_insert_dispatch&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='1587' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-211' is-artificial='yes'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-288'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -2710,8 +2721,8 @@ 
           <function-decl name='insert&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='1345' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-211' is-artificial='yes'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-283'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -2721,7 +2732,7 @@ 
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-288'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -2757,13 +2768,13 @@ 
         <member-function access='private'>
           <function-decl name='end' mangled-name='_ZNKSt5dequeI14vtkPixelExtentSaIS0_EE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='926' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-167' is-artificial='yes'/>
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='begin' mangled-name='_ZNKSt5dequeI14vtkPixelExtentSaIS0_EE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='908' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-167' is-artificial='yes'/>
-            <return type-id='type-id-282'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -2829,8 +2840,8 @@ 
           <function-decl name='_M_insert_aux&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' mangled-name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/deque.tcc' line='635' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_m'>
             <parameter type-id='type-id-211' is-artificial='yes'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-283'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-30'/>
           </function-decl>
@@ -2839,9 +2850,9 @@ 
           <function-decl name='_M_range_insert_aux&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' mangled-name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_St20forward_iterator_tag' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/deque.tcc' line='462' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_St20forward_iterator_tag'>
             <parameter type-id='type-id-211' is-artificial='yes'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-288'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-289'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -2874,12 +2885,12 @@ 
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-288'/>
+            <parameter type-id='type-id-289'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__uninitialized_fill&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='122' column='1' id='type-id-289'>
+      <class-decl name='__uninitialized_fill&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='122' column='1' id='type-id-290'>
         <member-function access='public' static='yes'>
           <function-decl name='uninitialized_fill&lt;vtkPixelExtent*, vtkPixelExtent&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-44'/>
@@ -2889,20 +2900,20 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='49' column='1' id='type-id-290'>
+      <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='49' column='1' id='type-id-291'>
         <member-type access='public'>
-          <typedef-decl name='fmtflags' type-id='type-id-274' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='263' column='1' id='type-id-137'/>
+          <typedef-decl name='fmtflags' type-id='type-id-275' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='263' column='1' id='type-id-137'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_mask' type-id='type-id-137' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='49' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1' id='type-id-291'>
+      <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1' id='type-id-292'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_n' type-id='type-id-17' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1' id='type-id-292'>
+      <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1' id='type-id-293'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_n' type-id='type-id-17' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1'/>
         </data-member>
@@ -2910,10 +2921,10 @@ 
       <typedef-decl name='ostream' type-id='type-id-205' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iosfwd' line='130' column='1' id='type-id-216'/>
       <class-decl name='__basic_file&lt;char&gt;' size-in-bits='128' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/x86_64-redhat-linux/bits/basic_file.h' line='53' column='1' id='type-id-139'>
         <member-type access='private'>
-          <typedef-decl name='openmode' type-id='type-id-275' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='369' column='1' id='type-id-142'/>
+          <typedef-decl name='openmode' type-id='type-id-276' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='369' column='1' id='type-id-142'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='seekdir' type-id='type-id-277' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='401' column='1' id='type-id-144'/>
+          <typedef-decl name='seekdir' type-id='type-id-278' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='401' column='1' id='type-id-144'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_cfile' type-id='type-id-198' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/x86_64-redhat-linux/bits/basic_file.h' line='55' column='1'/>
@@ -2940,7 +2951,7 @@ 
       <typedef-decl name='__c_file' type-id='type-id-89' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/x86_64-redhat-linux/bits/c++io.h' line='45' column='1' id='type-id-197'/>
       <class-decl name='basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-152'>
         <member-type access='public'>
-          <typedef-decl name='iostate' type-id='type-id-276' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='338' column='1' id='type-id-155'/>
+          <typedef-decl name='iostate' type-id='type-id-277' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='338' column='1' id='type-id-155'/>
         </member-type>
         <member-function access='public'>
           <function-decl name='rdstate' mangled-name='_ZNKSt9basic_iosIcSt11char_traitsIcEE7rdstateEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_ios.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -2951,7 +2962,7 @@ 
         <member-function access='public'>
           <function-decl name='setstate' mangled-name='_ZNSt9basic_iosIcSt11char_traitsIcEE8setstateESt12_Ios_Iostate' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_ios.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-204' is-artificial='yes'/>
-            <parameter type-id='type-id-276'/>
+            <parameter type-id='type-id-277'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -2987,7 +2998,7 @@ 
         <member-function access='public'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEPFRSoS_E' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ostream' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-207' is-artificial='yes'/>
-            <parameter type-id='type-id-293'/>
+            <parameter type-id='type-id-294'/>
             <return type-id='type-id-206'/>
           </function-decl>
         </member-function>
@@ -3002,7 +3013,7 @@ 
           <function-decl name='basic_ostream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ostream' line='361' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-207' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
-            <parameter type-id='type-id-294' is-artificial='yes'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -3017,7 +3028,7 @@ 
           <function-decl name='~basic_ostream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ostream' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-207' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
-            <parameter type-id='type-id-294' is-artificial='yes'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -3137,12 +3148,12 @@ 
           <var-decl name='end' type-id='type-id-145' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='410' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-295'/>
-      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-296'/>
+      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-296'/>
+      <class-decl name='reverse_iterator&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-297'/>
       <function-decl name='operator|' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-276'/>
-        <parameter type-id='type-id-276'/>
-        <return type-id='type-id-276'/>
+        <parameter type-id='type-id-277'/>
+        <parameter type-id='type-id-277'/>
+        <return type-id='type-id-277'/>
       </function-decl>
       <function-decl name='min&lt;int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-49'/>
@@ -4076,33 +4087,33 @@ 
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkImageDataLIC2DExtentTranslator.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
     <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='192' id='type-id-59'>
-      <subrange length='6' type-id='type-id-4' id='type-id-297'/>
+      <subrange length='6' type-id='type-id-4' id='type-id-298'/>
     </array-type-def>
     <class-decl name='vtkWeakPointer&lt;vtkImageDataLIC2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-61'>
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-33'/>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <parameter type-id='type-id-65'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <parameter type-id='type-id-36'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <parameter type-id='type-id-65'/>
           <parameter type-id='type-id-37'/>
           <return type-id='type-id-30'/>
@@ -4110,58 +4121,58 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-299' is-artificial='yes'/>
+          <parameter type-id='type-id-300' is-artificial='yes'/>
           <return type-id='type-id-65'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkImageDataLIC2D*' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-299' is-artificial='yes'/>
+          <parameter type-id='type-id-300' is-artificial='yes'/>
           <return type-id='type-id-65'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-299' is-artificial='yes'/>
+          <parameter type-id='type-id-300' is-artificial='yes'/>
           <return type-id='type-id-65'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI17vtkImageDataLIC2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-298' is-artificial='yes'/>
+          <parameter type-id='type-id-299' is-artificial='yes'/>
           <parameter type-id='type-id-65'/>
-          <return type-id='type-id-300'/>
+          <return type-id='type-id-301'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <qualified-type-def type-id='type-id-301' const='yes' id='type-id-302'/>
-    <reference-type-def kind='lvalue' type-id='type-id-302' size-in-bits='64' id='type-id-303'/>
-    <pointer-type-def type-id='type-id-302' size-in-bits='64' id='type-id-304'/>
-    <qualified-type-def type-id='type-id-57' const='yes' id='type-id-305'/>
-    <reference-type-def kind='lvalue' type-id='type-id-305' size-in-bits='64' id='type-id-63'/>
-    <pointer-type-def type-id='type-id-305' size-in-bits='64' id='type-id-66'/>
-    <qualified-type-def type-id='type-id-61' const='yes' id='type-id-306'/>
-    <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-299'/>
-    <pointer-type-def type-id='type-id-307' size-in-bits='64' id='type-id-293'/>
-    <reference-type-def kind='lvalue' type-id='type-id-171' size-in-bits='64' id='type-id-308'/>
-    <reference-type-def kind='lvalue' type-id='type-id-61' size-in-bits='64' id='type-id-300'/>
-    <pointer-type-def type-id='type-id-61' size-in-bits='64' id='type-id-298'/>
+    <qualified-type-def type-id='type-id-302' const='yes' id='type-id-303'/>
+    <reference-type-def kind='lvalue' type-id='type-id-303' size-in-bits='64' id='type-id-304'/>
+    <pointer-type-def type-id='type-id-303' size-in-bits='64' id='type-id-305'/>
+    <qualified-type-def type-id='type-id-57' const='yes' id='type-id-306'/>
+    <reference-type-def kind='lvalue' type-id='type-id-306' size-in-bits='64' id='type-id-63'/>
+    <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-66'/>
+    <qualified-type-def type-id='type-id-61' const='yes' id='type-id-307'/>
+    <pointer-type-def type-id='type-id-307' size-in-bits='64' id='type-id-300'/>
+    <pointer-type-def type-id='type-id-308' size-in-bits='64' id='type-id-294'/>
+    <reference-type-def kind='lvalue' type-id='type-id-171' size-in-bits='64' id='type-id-309'/>
+    <reference-type-def kind='lvalue' type-id='type-id-61' size-in-bits='64' id='type-id-301'/>
+    <pointer-type-def type-id='type-id-61' size-in-bits='64' id='type-id-299'/>
     <namespace-decl name='std'>
-      <class-decl name='ctype&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-301'>
+      <class-decl name='ctype&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-302'>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='679' column='1' id='type-id-309'/>
+          <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='679' column='1' id='type-id-310'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='widen' mangled-name='_ZNKSt5ctypeIcE5widenEc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='865' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-304' is-artificial='yes'/>
+            <parameter type-id='type-id-305' is-artificial='yes'/>
             <parameter type-id='type-id-2'/>
-            <return type-id='type-id-309'/>
+            <return type-id='type-id-310'/>
           </function-decl>
         </member-function>
       </class-decl>
       <function-decl name='__check_facet&lt;std::ctype&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_ios.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-304'/>
-        <return type-id='type-id-303'/>
+        <parameter type-id='type-id-305'/>
+        <return type-id='type-id-304'/>
       </function-decl>
       <function-decl name='endl&lt;char, std::char_traits&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ostream' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-206'/>
@@ -4172,51 +4183,51 @@ 
         <return type-id='type-id-206'/>
       </function-decl>
     </namespace-decl>
-    <function-type size-in-bits='64' id='type-id-307'>
+    <function-type size-in-bits='64' id='type-id-308'>
       <parameter type-id='type-id-206'/>
       <return type-id='type-id-206'/>
     </function-type>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='64' id='type-id-310'>
-      <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+    <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='64' id='type-id-311'>
+      <subrange length='2' type-id='type-id-4' id='type-id-312'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-50' size-in-bits='256' id='type-id-312'>
+    <array-type-def dimensions='1' type-id='type-id-50' size-in-bits='256' id='type-id-313'>
       <subrange length='4' type-id='type-id-4' id='type-id-11'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-53' size-in-bits='128' id='type-id-313'>
-      <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+    <array-type-def dimensions='1' type-id='type-id-53' size-in-bits='128' id='type-id-314'>
+      <subrange length='2' type-id='type-id-4' id='type-id-312'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-13' size-in-bits='64' id='type-id-314'>
-      <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+    <array-type-def dimensions='1' type-id='type-id-13' size-in-bits='64' id='type-id-315'>
+      <subrange length='2' type-id='type-id-4' id='type-id-312'/>
     </array-type-def>
-    <class-decl name='vtkLICPingPongBufferManager' size-in-bits='896' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='107' column='1' id='type-id-315'>
+    <class-decl name='vtkLICPingPongBufferManager' size-in-bits='896' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='107' column='1' id='type-id-316'>
       <data-member access='private' layout-offset-in-bits='0'>
-        <var-decl name='VectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='779' column='1'/>
+        <var-decl name='VectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='779' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='64'>
-        <var-decl name='ImageVectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='780' column='1'/>
+        <var-decl name='ImageVectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='780' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='128'>
-        <var-decl name='MaskVectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='781' column='1'/>
+        <var-decl name='MaskVectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='781' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='192'>
-        <var-decl name='NoiseTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='782' column='1'/>
+        <var-decl name='NoiseTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='782' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='256'>
-        <var-decl name='EETexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='783' column='1'/>
+        <var-decl name='EETexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='783' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='320'>
-        <var-decl name='LICTexture0' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='784' column='1'/>
+        <var-decl name='LICTexture0' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='784' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='384'>
-        <var-decl name='SeedTexture0' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='785' column='1'/>
+        <var-decl name='SeedTexture0' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='785' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='448'>
-        <var-decl name='LICTexture1' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='786' column='1'/>
+        <var-decl name='LICTexture1' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='786' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='512'>
-        <var-decl name='SeedTexture1' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='787' column='1'/>
+        <var-decl name='SeedTexture1' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='787' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='576'>
         <var-decl name='MaskVectorUnit' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='788' column='1'/>
@@ -4225,22 +4236,22 @@ 
         <var-decl name='ReadIndex' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='790' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='640'>
-        <var-decl name='PingTextures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='791' column='1'/>
+        <var-decl name='PingTextures' type-id='type-id-315' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='791' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='704'>
-        <var-decl name='PongTextures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='792' column='1'/>
+        <var-decl name='PongTextures' type-id='type-id-315' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='792' column='1'/>
       </data-member>
       <data-member access='private' layout-offset-in-bits='768'>
-        <var-decl name='Textures' type-id='type-id-313' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='793' column='1'/>
+        <var-decl name='Textures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='793' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkLICPingPongBufferManager' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
+          <parameter type-id='type-id-319'/>
           <parameter type-id='type-id-53'/>
-          <parameter type-id='type-id-316'/>
-          <parameter type-id='type-id-316'/>
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
+          <parameter type-id='type-id-317'/>
+          <parameter type-id='type-id-317'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
@@ -4248,84 +4259,84 @@ 
       </member-function>
       <member-function access='private' destructor='yes'>
         <function-decl name='~vtkLICPingPongBufferManager' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AllocateNoiseBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager19AllocateNoiseBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='601' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <parameter type-id='type-id-35'/>
           <parameter type-id='type-id-53'/>
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AllocateVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager20AllocateVectorBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='617' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <parameter type-id='type-id-35'/>
           <parameter type-id='type-id-53'/>
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetVectorTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager20GetVectorTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='DettachImageVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager24DettachImageVectorBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='475' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMaskVectorTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager24GetMaskVectorTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetNoiseTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager19GetNoiseTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetLICTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager17GetLICTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Swap' mangled-name='_ZN27vtkLICPingPongBufferManager4SwapEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='185' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetSeedTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager18GetSeedTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetLastLICBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager16GetLastLICBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
-          <return type-id='type-id-316'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='DettachEEBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager15DettachEEBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='RenderQuad' mangled-name='_ZN27vtkLICPingPongBufferManager10RenderQuadEPf14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='673' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <parameter type-id='type-id-55'/>
           <parameter type-id='type-id-43'/>
           <return type-id='type-id-30'/>
@@ -4333,63 +4344,63 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='AttachEEBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager14AttachEEBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='494' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AttachLICBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager16AttachLICBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='383' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='DettachLICBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager17DettachLICBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='423' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AttachVectorTextures' mangled-name='_ZN27vtkLICPingPongBufferManager20AttachVectorTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='DettachBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager14DettachBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AttachImageVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager23AttachImageVectorBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='452' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AllocateLICBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager17AllocateLICBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='585' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <parameter type-id='type-id-35'/>
           <parameter type-id='type-id-53'/>
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='AllocateBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager14AllocateBufferEP15vtkRenderWindowPjiiPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <parameter type-id='type-id-35'/>
           <parameter type-id='type-id-53'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-55'/>
-          <return type-id='type-id-316'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='ClearBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager12ClearBuffersEP21vtkFrameBufferObject2RK14vtkPixelExtentRKSt5dequeIS2_SaIS2_EEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
+          <parameter type-id='type-id-319'/>
           <parameter type-id='type-id-45'/>
           <parameter type-id='type-id-166'/>
           <parameter type-id='type-id-17'/>
@@ -4398,179 +4409,179 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='AttachNoiseTexture' mangled-name='_ZN27vtkLICPingPongBufferManager18AttachNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-317' is-artificial='yes'/>
+          <parameter type-id='type-id-318' is-artificial='yes'/>
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkPainterCommunicator' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='30' column='1' id='type-id-319'>
+    <class-decl name='vtkPainterCommunicator' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='30' column='1' id='type-id-320'>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
-          <parameter type-id='type-id-321'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
+          <parameter type-id='type-id-322'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='2'>
         <function-decl name='Copy' mangled-name='_ZN22vtkPainterCommunicator4CopyEPKS_b' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
-          <parameter type-id='type-id-322'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
+          <parameter type-id='type-id-323'/>
           <parameter type-id='type-id-1'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='3'>
         <function-decl name='Duplicate' mangled-name='_ZN22vtkPainterCommunicator9DuplicateEPKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
-          <parameter type-id='type-id-322'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
+          <parameter type-id='type-id-323'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='GetRank' mangled-name='_ZN22vtkPainterCommunicator7GetRankEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='5'>
         <function-decl name='GetSize' mangled-name='_ZN22vtkPainterCommunicator7GetSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='6'>
         <function-decl name='GetIsNull' mangled-name='_ZN22vtkPainterCommunicator9GetIsNullEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='7'>
         <function-decl name='GetWorldRank' mangled-name='_ZN22vtkPainterCommunicator12GetWorldRankEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='8'>
         <function-decl name='GetWorldSize' mangled-name='_ZN22vtkPainterCommunicator12GetWorldSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='9'>
         <function-decl name='GetMPIInitialized' mangled-name='_ZN22vtkPainterCommunicator17GetMPIInitializedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='10'>
         <function-decl name='GetMPIFinalized' mangled-name='_ZN22vtkPainterCommunicator15GetMPIFinalizedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-320' is-artificial='yes'/>
+          <parameter type-id='type-id-321' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <pointer-type-def type-id='type-id-323' size-in-bits='64' id='type-id-324'/>
-    <pointer-type-def type-id='type-id-325' size-in-bits='64' id='type-id-326'/>
-    <pointer-type-def type-id='type-id-327' size-in-bits='64' id='type-id-328'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2' size-in-bits='64' id='type-id-329'/>
-    <qualified-type-def type-id='type-id-86' const='yes' id='type-id-330'/>
-    <reference-type-def kind='lvalue' type-id='type-id-330' size-in-bits='64' id='type-id-331'/>
-    <qualified-type-def type-id='type-id-323' const='yes' id='type-id-332'/>
-    <reference-type-def kind='lvalue' type-id='type-id-332' size-in-bits='64' id='type-id-333'/>
-    <pointer-type-def type-id='type-id-332' size-in-bits='64' id='type-id-334'/>
-    <qualified-type-def type-id='type-id-325' const='yes' id='type-id-335'/>
-    <reference-type-def kind='lvalue' type-id='type-id-335' size-in-bits='64' id='type-id-336'/>
-    <pointer-type-def type-id='type-id-335' size-in-bits='64' id='type-id-337'/>
-    <qualified-type-def type-id='type-id-327' const='yes' id='type-id-338'/>
-    <reference-type-def kind='lvalue' type-id='type-id-338' size-in-bits='64' id='type-id-339'/>
-    <pointer-type-def type-id='type-id-338' size-in-bits='64' id='type-id-340'/>
-    <reference-type-def kind='lvalue' type-id='type-id-121' size-in-bits='64' id='type-id-341'/>
-    <qualified-type-def type-id='type-id-16' const='yes' id='type-id-342'/>
-    <reference-type-def kind='lvalue' type-id='type-id-342' size-in-bits='64' id='type-id-343'/>
-    <pointer-type-def type-id='type-id-342' size-in-bits='64' id='type-id-344'/>
-    <qualified-type-def type-id='type-id-345' const='yes' id='type-id-346'/>
-    <pointer-type-def type-id='type-id-346' size-in-bits='64' id='type-id-347'/>
-    <qualified-type-def type-id='type-id-348' const='yes' id='type-id-349'/>
-    <pointer-type-def type-id='type-id-349' size-in-bits='64' id='type-id-350'/>
-    <qualified-type-def type-id='type-id-351' const='yes' id='type-id-352'/>
-    <reference-type-def kind='lvalue' type-id='type-id-352' size-in-bits='64' id='type-id-353'/>
-    <qualified-type-def type-id='type-id-354' const='yes' id='type-id-355'/>
-    <reference-type-def kind='lvalue' type-id='type-id-355' size-in-bits='64' id='type-id-356'/>
-    <qualified-type-def type-id='type-id-357' const='yes' id='type-id-358'/>
-    <reference-type-def kind='lvalue' type-id='type-id-358' size-in-bits='64' id='type-id-359'/>
-    <qualified-type-def type-id='type-id-360' const='yes' id='type-id-361'/>
-    <pointer-type-def type-id='type-id-361' size-in-bits='64' id='type-id-362'/>
-    <qualified-type-def type-id='type-id-363' const='yes' id='type-id-364'/>
-    <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-365'/>
-    <qualified-type-def type-id='type-id-366' const='yes' id='type-id-367'/>
-    <reference-type-def kind='lvalue' type-id='type-id-367' size-in-bits='64' id='type-id-368'/>
-    <pointer-type-def type-id='type-id-367' size-in-bits='64' id='type-id-369'/>
-    <qualified-type-def type-id='type-id-370' const='yes' id='type-id-371'/>
-    <pointer-type-def type-id='type-id-371' size-in-bits='64' id='type-id-372'/>
-    <qualified-type-def type-id='type-id-373' const='yes' id='type-id-374'/>
-    <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-375'/>
-    <pointer-type-def type-id='type-id-374' size-in-bits='64' id='type-id-376'/>
-    <qualified-type-def type-id='type-id-377' const='yes' id='type-id-378'/>
-    <reference-type-def kind='lvalue' type-id='type-id-378' size-in-bits='64' id='type-id-379'/>
-    <pointer-type-def type-id='type-id-378' size-in-bits='64' id='type-id-380'/>
-    <qualified-type-def type-id='type-id-381' const='yes' id='type-id-382'/>
-    <reference-type-def kind='lvalue' type-id='type-id-382' size-in-bits='64' id='type-id-383'/>
-    <pointer-type-def type-id='type-id-382' size-in-bits='64' id='type-id-384'/>
-    <qualified-type-def type-id='type-id-319' const='yes' id='type-id-385'/>
-    <reference-type-def kind='lvalue' type-id='type-id-385' size-in-bits='64' id='type-id-321'/>
-    <pointer-type-def type-id='type-id-385' size-in-bits='64' id='type-id-322'/>
-    <reference-type-def kind='lvalue' type-id='type-id-16' size-in-bits='64' id='type-id-386'/>
-    <pointer-type-def type-id='type-id-345' size-in-bits='64' id='type-id-387'/>
-    <pointer-type-def type-id='type-id-388' size-in-bits='64' id='type-id-389'/>
-    <pointer-type-def type-id='type-id-348' size-in-bits='64' id='type-id-390'/>
-    <pointer-type-def type-id='type-id-391' size-in-bits='64' id='type-id-392'/>
-    <pointer-type-def type-id='type-id-351' size-in-bits='64' id='type-id-393'/>
-    <reference-type-def kind='lvalue' type-id='type-id-354' size-in-bits='64' id='type-id-394'/>
-    <pointer-type-def type-id='type-id-354' size-in-bits='64' id='type-id-395'/>
-    <reference-type-def kind='lvalue' type-id='type-id-357' size-in-bits='64' id='type-id-396'/>
-    <pointer-type-def type-id='type-id-357' size-in-bits='64' id='type-id-397'/>
-    <pointer-type-def type-id='type-id-360' size-in-bits='64' id='type-id-398'/>
-    <pointer-type-def type-id='type-id-363' size-in-bits='64' id='type-id-399'/>
-    <reference-type-def kind='lvalue' type-id='type-id-366' size-in-bits='64' id='type-id-400'/>
-    <pointer-type-def type-id='type-id-366' size-in-bits='64' id='type-id-401'/>
-    <pointer-type-def type-id='type-id-402' size-in-bits='64' id='type-id-403'/>
-    <reference-type-def kind='lvalue' type-id='type-id-370' size-in-bits='64' id='type-id-404'/>
-    <pointer-type-def type-id='type-id-370' size-in-bits='64' id='type-id-405'/>
-    <pointer-type-def type-id='type-id-406' size-in-bits='64' id='type-id-407'/>
-    <reference-type-def kind='lvalue' type-id='type-id-373' size-in-bits='64' id='type-id-408'/>
-    <pointer-type-def type-id='type-id-373' size-in-bits='64' id='type-id-409'/>
-    <reference-type-def kind='lvalue' type-id='type-id-377' size-in-bits='64' id='type-id-410'/>
-    <pointer-type-def type-id='type-id-377' size-in-bits='64' id='type-id-411'/>
-    <pointer-type-def type-id='type-id-14' size-in-bits='64' id='type-id-294'/>
-    <pointer-type-def type-id='type-id-412' size-in-bits='64' id='type-id-318'/>
-    <pointer-type-def type-id='type-id-315' size-in-bits='64' id='type-id-317'/>
-    <pointer-type-def type-id='type-id-381' size-in-bits='64' id='type-id-413'/>
-    <reference-type-def kind='lvalue' type-id='type-id-319' size-in-bits='64' id='type-id-414'/>
-    <pointer-type-def type-id='type-id-319' size-in-bits='64' id='type-id-320'/>
-    <qualified-type-def type-id='type-id-245' const='yes' id='type-id-415'/>
-    <reference-type-def kind='lvalue' type-id='type-id-415' size-in-bits='64' id='type-id-416'/>
-    <pointer-type-def type-id='type-id-415' size-in-bits='64' id='type-id-417'/>
-    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-418'/>
-    <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-281'/>
-    <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-316'/>
-    <class-decl name='vtkFrameBufferObject2' visibility='default' is-declaration-only='yes' id='type-id-412'>
+    <pointer-type-def type-id='type-id-324' size-in-bits='64' id='type-id-325'/>
+    <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-327'/>
+    <pointer-type-def type-id='type-id-328' size-in-bits='64' id='type-id-329'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2' size-in-bits='64' id='type-id-330'/>
+    <qualified-type-def type-id='type-id-86' const='yes' id='type-id-331'/>
+    <reference-type-def kind='lvalue' type-id='type-id-331' size-in-bits='64' id='type-id-332'/>
+    <qualified-type-def type-id='type-id-324' const='yes' id='type-id-333'/>
+    <reference-type-def kind='lvalue' type-id='type-id-333' size-in-bits='64' id='type-id-334'/>
+    <pointer-type-def type-id='type-id-333' size-in-bits='64' id='type-id-335'/>
+    <qualified-type-def type-id='type-id-326' const='yes' id='type-id-336'/>
+    <reference-type-def kind='lvalue' type-id='type-id-336' size-in-bits='64' id='type-id-337'/>
+    <pointer-type-def type-id='type-id-336' size-in-bits='64' id='type-id-338'/>
+    <qualified-type-def type-id='type-id-328' const='yes' id='type-id-339'/>
+    <reference-type-def kind='lvalue' type-id='type-id-339' size-in-bits='64' id='type-id-340'/>
+    <pointer-type-def type-id='type-id-339' size-in-bits='64' id='type-id-341'/>
+    <reference-type-def kind='lvalue' type-id='type-id-121' size-in-bits='64' id='type-id-342'/>
+    <qualified-type-def type-id='type-id-16' const='yes' id='type-id-343'/>
+    <reference-type-def kind='lvalue' type-id='type-id-343' size-in-bits='64' id='type-id-344'/>
+    <pointer-type-def type-id='type-id-343' size-in-bits='64' id='type-id-345'/>
+    <qualified-type-def type-id='type-id-346' const='yes' id='type-id-347'/>
+    <pointer-type-def type-id='type-id-347' size-in-bits='64' id='type-id-348'/>
+    <qualified-type-def type-id='type-id-349' const='yes' id='type-id-350'/>
+    <pointer-type-def type-id='type-id-350' size-in-bits='64' id='type-id-351'/>
+    <qualified-type-def type-id='type-id-352' const='yes' id='type-id-353'/>
+    <reference-type-def kind='lvalue' type-id='type-id-353' size-in-bits='64' id='type-id-354'/>
+    <qualified-type-def type-id='type-id-355' const='yes' id='type-id-356'/>
+    <reference-type-def kind='lvalue' type-id='type-id-356' size-in-bits='64' id='type-id-357'/>
+    <qualified-type-def type-id='type-id-358' const='yes' id='type-id-359'/>
+    <reference-type-def kind='lvalue' type-id='type-id-359' size-in-bits='64' id='type-id-360'/>
+    <qualified-type-def type-id='type-id-361' const='yes' id='type-id-362'/>
+    <pointer-type-def type-id='type-id-362' size-in-bits='64' id='type-id-363'/>
+    <qualified-type-def type-id='type-id-364' const='yes' id='type-id-365'/>
+    <pointer-type-def type-id='type-id-365' size-in-bits='64' id='type-id-366'/>
+    <qualified-type-def type-id='type-id-367' const='yes' id='type-id-368'/>
+    <reference-type-def kind='lvalue' type-id='type-id-368' size-in-bits='64' id='type-id-369'/>
+    <pointer-type-def type-id='type-id-368' size-in-bits='64' id='type-id-370'/>
+    <qualified-type-def type-id='type-id-371' const='yes' id='type-id-372'/>
+    <pointer-type-def type-id='type-id-372' size-in-bits='64' id='type-id-373'/>
+    <qualified-type-def type-id='type-id-374' const='yes' id='type-id-375'/>
+    <reference-type-def kind='lvalue' type-id='type-id-375' size-in-bits='64' id='type-id-376'/>
+    <pointer-type-def type-id='type-id-375' size-in-bits='64' id='type-id-377'/>
+    <qualified-type-def type-id='type-id-378' const='yes' id='type-id-379'/>
+    <reference-type-def kind='lvalue' type-id='type-id-379' size-in-bits='64' id='type-id-380'/>
+    <pointer-type-def type-id='type-id-379' size-in-bits='64' id='type-id-381'/>
+    <qualified-type-def type-id='type-id-382' const='yes' id='type-id-383'/>
+    <reference-type-def kind='lvalue' type-id='type-id-383' size-in-bits='64' id='type-id-384'/>
+    <pointer-type-def type-id='type-id-383' size-in-bits='64' id='type-id-385'/>
+    <qualified-type-def type-id='type-id-320' const='yes' id='type-id-386'/>
+    <reference-type-def kind='lvalue' type-id='type-id-386' size-in-bits='64' id='type-id-322'/>
+    <pointer-type-def type-id='type-id-386' size-in-bits='64' id='type-id-323'/>
+    <reference-type-def kind='lvalue' type-id='type-id-16' size-in-bits='64' id='type-id-387'/>
+    <pointer-type-def type-id='type-id-346' size-in-bits='64' id='type-id-388'/>
+    <pointer-type-def type-id='type-id-389' size-in-bits='64' id='type-id-390'/>
+    <pointer-type-def type-id='type-id-349' size-in-bits='64' id='type-id-391'/>
+    <pointer-type-def type-id='type-id-392' size-in-bits='64' id='type-id-393'/>
+    <pointer-type-def type-id='type-id-352' size-in-bits='64' id='type-id-394'/>
+    <reference-type-def kind='lvalue' type-id='type-id-355' size-in-bits='64' id='type-id-395'/>
+    <pointer-type-def type-id='type-id-355' size-in-bits='64' id='type-id-396'/>
+    <reference-type-def kind='lvalue' type-id='type-id-358' size-in-bits='64' id='type-id-397'/>
+    <pointer-type-def type-id='type-id-358' size-in-bits='64' id='type-id-398'/>
+    <pointer-type-def type-id='type-id-361' size-in-bits='64' id='type-id-399'/>
+    <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-400'/>
+    <reference-type-def kind='lvalue' type-id='type-id-367' size-in-bits='64' id='type-id-401'/>
+    <pointer-type-def type-id='type-id-367' size-in-bits='64' id='type-id-402'/>
+    <pointer-type-def type-id='type-id-403' size-in-bits='64' id='type-id-404'/>
+    <reference-type-def kind='lvalue' type-id='type-id-371' size-in-bits='64' id='type-id-405'/>
+    <pointer-type-def type-id='type-id-371' size-in-bits='64' id='type-id-406'/>
+    <pointer-type-def type-id='type-id-407' size-in-bits='64' id='type-id-408'/>
+    <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-409'/>
+    <pointer-type-def type-id='type-id-374' size-in-bits='64' id='type-id-410'/>
+    <reference-type-def kind='lvalue' type-id='type-id-378' size-in-bits='64' id='type-id-411'/>
+    <pointer-type-def type-id='type-id-378' size-in-bits='64' id='type-id-412'/>
+    <pointer-type-def type-id='type-id-14' size-in-bits='64' id='type-id-295'/>
+    <pointer-type-def type-id='type-id-413' size-in-bits='64' id='type-id-319'/>
+    <pointer-type-def type-id='type-id-316' size-in-bits='64' id='type-id-318'/>
+    <pointer-type-def type-id='type-id-382' size-in-bits='64' id='type-id-414'/>
+    <reference-type-def kind='lvalue' type-id='type-id-320' size-in-bits='64' id='type-id-415'/>
+    <pointer-type-def type-id='type-id-320' size-in-bits='64' id='type-id-321'/>
+    <qualified-type-def type-id='type-id-245' const='yes' id='type-id-416'/>
+    <reference-type-def kind='lvalue' type-id='type-id-416' size-in-bits='64' id='type-id-417'/>
+    <pointer-type-def type-id='type-id-416' size-in-bits='64' id='type-id-418'/>
+    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-419'/>
+    <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-282'/>
+    <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-317'/>
+    <class-decl name='vtkFrameBufferObject2' visibility='default' is-declaration-only='yes' id='type-id-413'>
       <member-function access='private'>
         <function-decl name='RemoveTexColorAttachment' mangled-name='_ZN21vtkFrameBufferObject224RemoveTexColorAttachmentEjj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject2.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-318' is-artificial='yes'/>
+          <parameter type-id='type-id-319' is-artificial='yes'/>
           <parameter type-id='type-id-13'/>
           <parameter type-id='type-id-13'/>
           <return type-id='type-id-30'/>
@@ -4578,61 +4589,61 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='RemoveRenDepthAttachment' mangled-name='_ZN21vtkFrameBufferObject224RemoveRenDepthAttachmentEj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject2.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-318' is-artificial='yes'/>
+          <parameter type-id='type-id-319' is-artificial='yes'/>
           <parameter type-id='type-id-13'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
     <namespace-decl name='std'>
-      <class-decl name='allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-354'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-325'/>
+      <class-decl name='allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-355'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-326'/>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-395' is-artificial='yes'/>
+            <parameter type-id='type-id-396' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-395' is-artificial='yes'/>
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-396' is-artificial='yes'/>
+            <parameter type-id='type-id-357'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-395' is-artificial='yes'/>
+            <parameter type-id='type-id-396' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-357'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-327'/>
+      <class-decl name='allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-358'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-328'/>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-397' is-artificial='yes'/>
+            <parameter type-id='type-id-398' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-397' is-artificial='yes'/>
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-398' is-artificial='yes'/>
+            <parameter type-id='type-id-360'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-397' is-artificial='yes'/>
+            <parameter type-id='type-id-398' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__false_type' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/cpp_type_traits.h' line='79' column='1' id='type-id-287'/>
-      <class-decl name='__niter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-419'>
+      <class-decl name='__false_type' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/cpp_type_traits.h' line='79' column='1' id='type-id-288'/>
+      <class-decl name='__niter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-420'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-55'/>
@@ -4640,15 +4651,15 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__niter_base&lt;vtkPixelBufferObject**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-420'>
+      <class-decl name='__niter_base&lt;vtkPixelBufferObject**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-421'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPP20vtkPixelBufferObjectLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-281'/>
-            <return type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
+            <return type-id='type-id-282'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__niter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-421'>
+      <class-decl name='__niter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-422'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPP14vtkPixelExtentLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-250'/>
@@ -4656,7 +4667,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__miter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-422'>
+      <class-decl name='__miter_base&lt;vtkPixelExtent**, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-423'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPP14vtkPixelExtentLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-250'/>
@@ -4664,7 +4675,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__copy_move&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='307' column='1' id='type-id-423'>
+      <class-decl name='__copy_move&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='307' column='1' id='type-id-424'>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_m&lt;vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-248'/>
@@ -4675,14 +4686,14 @@ 
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_m&lt;float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-344'/>
-            <parameter type-id='type-id-344'/>
+            <parameter type-id='type-id-345'/>
+            <parameter type-id='type-id-345'/>
             <parameter type-id='type-id-55'/>
             <return type-id='type-id-55'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__copy_move_backward&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='511' column='1' id='type-id-424'>
+      <class-decl name='__copy_move_backward&lt;false, true, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='511' column='1' id='type-id-425'>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_move_b&lt;vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='572' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-248'/>
@@ -4693,29 +4704,29 @@ 
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_move_b&lt;float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='572' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-344'/>
-            <parameter type-id='type-id-344'/>
+            <parameter type-id='type-id-345'/>
+            <parameter type-id='type-id-345'/>
             <parameter type-id='type-id-55'/>
             <return type-id='type-id-55'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='79' column='1' id='type-id-425'/>
-      <class-decl name='forward_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='83' column='1' id='type-id-288'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-425'/>
+      <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='79' column='1' id='type-id-426'/>
+      <class-decl name='forward_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='83' column='1' id='type-id-289'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-426'/>
       </class-decl>
-      <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='86' column='1' id='type-id-426'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-288'/>
+      <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='86' column='1' id='type-id-427'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-289'/>
       </class-decl>
-      <class-decl name='random_access_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='89' column='1' id='type-id-427'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-426'/>
+      <class-decl name='random_access_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='89' column='1' id='type-id-428'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-427'/>
       </class-decl>
-      <class-decl name='__uninitialized_fill_n&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='198' column='1' id='type-id-428'>
+      <class-decl name='__uninitialized_fill_n&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='198' column='1' id='type-id-429'>
         <member-function access='public' static='yes'>
           <function-decl name='uninitialized_fill_n&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-282'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-416'/>
+            <parameter type-id='type-id-417'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
@@ -4723,15 +4734,15 @@ 
           <function-decl name='uninitialized_fill_n&lt;float*, long unsigned int, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-55'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Vector_base&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-345'>
+      <class-decl name='_Vector_base&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-346'>
         <member-type access='public'>
-          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-388'>
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-354'/>
+          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-389'>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-355'/>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='_M_start' type-id='type-id-55' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
             </data-member>
@@ -4743,66 +4754,66 @@ 
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-389' is-artificial='yes'/>
+                <parameter type-id='type-id-390' is-artificial='yes'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-389' is-artificial='yes'/>
-                <parameter type-id='type-id-356'/>
+                <parameter type-id='type-id-390' is-artificial='yes'/>
+                <parameter type-id='type-id-357'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_impl' type-id='type-id-388' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-389' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-387' is-artificial='yes'/>
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
+            <parameter type-id='type-id-357'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-357'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseIfSaIfEE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-387' is-artificial='yes'/>
-            <return type-id='type-id-394'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
+            <return type-id='type-id-395'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseIfSaIfEE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-55'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseIfSaIfEE13_M_deallocateEPfm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-387' is-artificial='yes'/>
+            <parameter type-id='type-id-388' is-artificial='yes'/>
             <parameter type-id='type-id-55'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-30'/>
@@ -4810,166 +4821,166 @@ 
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNKSt12_Vector_baseIfSaIfEE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-347' is-artificial='yes'/>
-            <return type-id='type-id-356'/>
+            <parameter type-id='type-id-348' is-artificial='yes'/>
+            <return type-id='type-id-357'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Vector_base&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-348'>
+      <class-decl name='_Vector_base&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-349'>
         <member-type access='public'>
-          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-391'>
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-357'/>
+          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-392'>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-358'/>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='_M_start' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
+              <var-decl name='_M_start' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
-              <var-decl name='_M_finish' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='77' column='1'/>
+              <var-decl name='_M_finish' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='77' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='128'>
-              <var-decl name='_M_end_of_storage' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='78' column='1'/>
+              <var-decl name='_M_end_of_storage' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='78' column='1'/>
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-392' is-artificial='yes'/>
+                <parameter type-id='type-id-393' is-artificial='yes'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-392' is-artificial='yes'/>
-                <parameter type-id='type-id-359'/>
+                <parameter type-id='type-id-393' is-artificial='yes'/>
+                <parameter type-id='type-id-360'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_impl' type-id='type-id-391' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-392' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-390' is-artificial='yes'/>
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
+            <parameter type-id='type-id-360'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-360'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-390' is-artificial='yes'/>
-            <return type-id='type-id-396'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
+            <return type-id='type-id-397'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-390' is-artificial='yes'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-281'/>
+            <return type-id='type-id-282'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE13_M_deallocateEPS1_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-390' is-artificial='yes'/>
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-391' is-artificial='yes'/>
+            <parameter type-id='type-id-282'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='vector&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-373'>
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-345'/>
+      <class-decl name='vector&lt;float, std::allocator&lt;float&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-374'>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-346'/>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
+            <parameter type-id='type-id-357'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-343'/>
-            <parameter type-id='type-id-356'/>
+            <parameter type-id='type-id-344'/>
+            <parameter type-id='type-id-357'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
-            <parameter type-id='type-id-375'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
+            <parameter type-id='type-id-376'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorIfSaIfEE18_M_fill_initializeEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorIfSaIfEEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-386'/>
+            <return type-id='type-id-387'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='max_size' mangled-name='_ZNKSt6vectorIfSaIfEE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='537' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-376' is-artificial='yes'/>
+            <parameter type-id='type-id-377' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='size' mangled-name='_ZNKSt6vectorIfSaIfEE4sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-376' is-artificial='yes'/>
+            <parameter type-id='type-id-377' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='end' mangled-name='_ZNSt6vectorIfSaIfEE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
-            <return type-id='type-id-429'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
+            <return type-id='type-id-430'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_check_len' mangled-name='_ZNKSt6vectorIfSaIfEE12_M_check_lenEmPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1134' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-376' is-artificial='yes'/>
+            <parameter type-id='type-id-377' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-64'/>
             <return type-id='type-id-50'/>
@@ -4977,29 +4988,29 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='begin' mangled-name='_ZNSt6vectorIfSaIfEE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='425' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
-            <return type-id='type-id-429'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
+            <return type-id='type-id-430'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorIfSaIfEE15_M_erase_at_endEPf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <parameter type-id='type-id-55'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='insert' mangled-name='_ZNSt6vectorIfSaIfEE6insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
-            <parameter type-id='type-id-429'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
+            <parameter type-id='type-id-430'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='resize' mangled-name='_ZNSt6vectorIfSaIfEE6resizeEmf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='552' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-16'/>
             <return type-id='type-id-30'/>
@@ -5007,107 +5018,107 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_fill_insert' mangled-name='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf'>
-            <parameter type-id='type-id-409' is-artificial='yes'/>
-            <parameter type-id='type-id-429'/>
+            <parameter type-id='type-id-410' is-artificial='yes'/>
+            <parameter type-id='type-id-430'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-343'/>
+            <parameter type-id='type-id-344'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-377'>
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-348'/>
+      <class-decl name='vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-378'>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-349'/>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
+            <parameter type-id='type-id-360'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-416'/>
-            <parameter type-id='type-id-359'/>
+            <parameter type-id='type-id-417'/>
+            <parameter type-id='type-id-360'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
-            <parameter type-id='type-id-379'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
+            <parameter type-id='type-id-380'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE15_M_erase_at_endEPS1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
+            <parameter type-id='type-id-282'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE18_M_fill_initializeEmRKS1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-416'/>
+            <parameter type-id='type-id-417'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-418'/>
+            <return type-id='type-id-419'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='clear' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE5clearEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='950' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-411' is-artificial='yes'/>
+            <parameter type-id='type-id-412' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='allocator&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='45' column='1' id='type-id-351'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-323'/>
+      <class-decl name='allocator&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='45' column='1' id='type-id-352'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-324'/>
         <member-function access='public'>
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-393' is-artificial='yes'/>
+            <parameter type-id='type-id-394' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-393' is-artificial='yes'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-394' is-artificial='yes'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-393' is-artificial='yes'/>
+            <parameter type-id='type-id-394' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='52' column='1' id='type-id-366'>
+      <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='52' column='1' id='type-id-367'>
         <member-type access='private'>
-          <class-decl name='_Rep_base' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='141' column='1' id='type-id-430'>
+          <class-decl name='_Rep_base' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='141' column='1' id='type-id-431'>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='_M_length' type-id='type-id-50' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='142' column='1'/>
             </data-member>
@@ -5120,8 +5131,8 @@ 
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Rep' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='148' column='1' id='type-id-370'>
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-430'/>
+          <class-decl name='_Rep' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='148' column='1' id='type-id-371'>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-431'/>
             <data-member access='public' static='yes'>
               <var-decl name='_S_max_size' type-id='type-id-128' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='51' column='1'/>
             </data-member>
@@ -5129,58 +5140,58 @@ 
               <var-decl name='_S_terminal' type-id='type-id-121' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='56' column='1'/>
             </data-member>
             <data-member access='public' static='yes'>
-              <var-decl name='_S_empty_rep_storage' type-id='type-id-312' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='68' column='1'/>
+              <var-decl name='_S_empty_rep_storage' type-id='type-id-313' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='68' column='1'/>
             </data-member>
             <member-function access='public' static='yes'>
               <function-decl name='_S_empty_rep' mangled-name='_ZNSs4_Rep12_S_empty_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <return type-id='type-id-404'/>
+                <return type-id='type-id-405'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <function-decl name='_M_refdata' mangled-name='_ZNSs4_Rep10_M_refdataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-405' is-artificial='yes'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
                 <return type-id='type-id-86'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <function-decl name='_M_set_sharable' mangled-name='_ZNSs4_Rep15_M_set_sharableEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-405' is-artificial='yes'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <function-decl name='_M_set_length_and_sharable' mangled-name='_ZNSs4_Rep26_M_set_length_and_sharableEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-405' is-artificial='yes'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
                 <parameter type-id='type-id-4'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <function-decl name='_M_is_leaked' mangled-name='_ZNKSs4_Rep12_M_is_leakedEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-372' is-artificial='yes'/>
+                <parameter type-id='type-id-373' is-artificial='yes'/>
                 <return type-id='type-id-1'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <function-decl name='_M_dispose' mangled-name='_ZNSs4_Rep10_M_disposeERKSaIcE' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-405' is-artificial='yes'/>
-                <parameter type-id='type-id-353'/>
+                <parameter type-id='type-id-406' is-artificial='yes'/>
+                <parameter type-id='type-id-354'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='258' column='1' id='type-id-402'>
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-351'/>
+          <class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='258' column='1' id='type-id-403'>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-352'/>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='_M_p' type-id='type-id-86' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='262' column='1'/>
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Alloc_hider' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-403' is-artificial='yes'/>
+                <parameter type-id='type-id-404' is-artificial='yes'/>
                 <parameter type-id='type-id-86'/>
-                <parameter type-id='type-id-353'/>
+                <parameter type-id='type-id-354'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
@@ -5190,32 +5201,32 @@ 
           <var-decl name='npos' type-id='type-id-128' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='270' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_dataplus' type-id='type-id-402' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='274' column='1'/>
+          <var-decl name='_M_dataplus' type-id='type-id-403' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='274' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='2144' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
-            <parameter type-id='type-id-368'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
+            <parameter type-id='type-id-369'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
-            <parameter type-id='type-id-368'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
+            <parameter type-id='type-id-369'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-30'/>
@@ -5223,73 +5234,73 @@ 
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='194' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
-            <parameter type-id='type-id-368'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
+            <parameter type-id='type-id-369'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-64'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-64'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='220' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-2'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='502' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='basic_string&lt;char*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-86'/>
             <parameter type-id='type-id-86'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_data' mangled-name='_ZNKSs7_M_dataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <return type-id='type-id-86'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='_S_empty_rep' mangled-name='_ZNSs12_S_empty_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='411' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <return type-id='type-id-404'/>
+            <return type-id='type-id-405'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='_S_construct_aux&lt;char*&gt;' mangled-name='_ZNSs16_S_construct_auxIPcEES0_T_S1_RKSaIcESt12__false_type' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1539' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-86'/>
             <parameter type-id='type-id-86'/>
-            <parameter type-id='type-id-353'/>
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-354'/>
+            <parameter type-id='type-id-288'/>
             <return type-id='type-id-86'/>
           </function-decl>
         </member-function>
@@ -5297,166 +5308,166 @@ 
           <function-decl name='_S_construct&lt;char*&gt;' mangled-name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcE' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1556' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-86'/>
             <parameter type-id='type-id-86'/>
-            <parameter type-id='type-id-353'/>
+            <parameter type-id='type-id-354'/>
             <return type-id='type-id-86'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='get_allocator' mangled-name='_ZNKSs13get_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1629' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-369' is-artificial='yes'/>
-            <return type-id='type-id-351'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
+            <return type-id='type-id-352'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_rep' mangled-name='_ZNKSs6_M_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-369' is-artificial='yes'/>
-            <return type-id='type-id-405'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
+            <return type-id='type-id-406'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator=' mangled-name='_ZNSsaSERKSs' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='510' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
-            <parameter type-id='type-id-368'/>
-            <return type-id='type-id-400'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
+            <parameter type-id='type-id-369'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='c_str' mangled-name='_ZNKSs5c_strEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1612' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <return type-id='type-id-64'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator[]' mangled-name='_ZNSsixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-329'/>
+            <return type-id='type-id-330'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_leak' mangled-name='_ZNSs7_M_leakEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator=' mangled-name='_ZNSsaSEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-64'/>
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator+=' mangled-name='_ZNSspLEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='804' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-64'/>
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='length' mangled-name='_ZNKSs6lengthEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-369' is-artificial='yes'/>
+            <parameter type-id='type-id-370' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='assign' mangled-name='_ZNSs6assignEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='972' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-64'/>
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='append' mangled-name='_ZNSs6appendEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='868' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-401' is-artificial='yes'/>
+            <parameter type-id='type-id-402' is-artificial='yes'/>
             <parameter type-id='type-id-64'/>
-            <return type-id='type-id-400'/>
+            <return type-id='type-id-401'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <typedef-decl name='string' type-id='type-id-366' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='56' column='1' id='type-id-431'/>
-      <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-360'>
+      <typedef-decl name='string' type-id='type-id-367' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='56' column='1' id='type-id-432'/>
+      <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-361'>
         <member-function access='public'>
           <function-decl name='basic_ostringstream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='402' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-398' is-artificial='yes'/>
+            <parameter type-id='type-id-399' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
-            <parameter type-id='type-id-294' is-artificial='yes'/>
-            <parameter type-id='type-id-275'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
+            <parameter type-id='type-id-276'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='str' mangled-name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='450' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-362' is-artificial='yes'/>
-            <return type-id='type-id-366'/>
+            <parameter type-id='type-id-363' is-artificial='yes'/>
+            <return type-id='type-id-367'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='431' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-398' is-artificial='yes'/>
+            <parameter type-id='type-id-399' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
-            <parameter type-id='type-id-294' is-artificial='yes'/>
+            <parameter type-id='type-id-295' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-363'>
+      <class-decl name='basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-364'>
         <member-function access='protected'>
           <function-decl name='basic_streambuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='439' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-399' is-artificial='yes'/>
+            <parameter type-id='type-id-400' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='pptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4pptrEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='508' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-365' is-artificial='yes'/>
+            <parameter type-id='type-id-366' is-artificial='yes'/>
             <return type-id='type-id-86'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='egptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5egptrEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='464' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-365' is-artificial='yes'/>
+            <parameter type-id='type-id-366' is-artificial='yes'/>
             <return type-id='type-id-86'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='pbase' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5pbaseEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='505' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-365' is-artificial='yes'/>
+            <parameter type-id='type-id-366' is-artificial='yes'/>
             <return type-id='type-id-86'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_streambuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-399' is-artificial='yes'/>
+            <parameter type-id='type-id-400' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_stringbuf&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-406'>
+      <class-decl name='basic_stringbuf&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-407'>
         <member-function access='public'>
           <function-decl name='basic_stringbuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-407' is-artificial='yes'/>
-            <parameter type-id='type-id-275'/>
+            <parameter type-id='type-id-408' is-artificial='yes'/>
+            <parameter type-id='type-id-276'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-432'/>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-433'/>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-434'/>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-435'/>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-436'/>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-437'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-433'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-434'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-435'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-436'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-437'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-438'/>
       <function-decl name='operator==&lt;char&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-353'/>
-        <parameter type-id='type-id-353'/>
+        <parameter type-id='type-id-354'/>
+        <parameter type-id='type-id-354'/>
         <return type-id='type-id-1'/>
       </function-decl>
       <function-decl name='operator|' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-275'/>
-        <parameter type-id='type-id-275'/>
-        <return type-id='type-id-275'/>
+        <parameter type-id='type-id-276'/>
+        <parameter type-id='type-id-276'/>
+        <return type-id='type-id-276'/>
       </function-decl>
       <function-decl name='__copy_move_a&lt;false, vtkPixelExtent**, vtkPixelExtent**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-250'/>
@@ -5497,26 +5508,26 @@ 
       <function-decl name='__fill_n_a&lt;float*, long unsigned int, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='754' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='__fill_n_a&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='754' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-416'/>
-        <return type-id='type-id-281'/>
+        <parameter type-id='type-id-417'/>
+        <return type-id='type-id-282'/>
       </function-decl>
       <function-decl name='fill_n&lt;float*, long unsigned int, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='fill_n&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-416'/>
-        <return type-id='type-id-281'/>
+        <parameter type-id='type-id-417'/>
+        <return type-id='type-id-282'/>
       </function-decl>
       <function-decl name='_Destroy&lt;float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
@@ -5524,20 +5535,20 @@ 
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='_Destroy&lt;vtkPixelBufferObject**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-281'/>
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-282'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='_Destroy&lt;float*, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-55'/>
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-395'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='_Destroy&lt;vtkPixelBufferObject**, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-281'/>
-        <parameter type-id='type-id-281'/>
-        <parameter type-id='type-id-396'/>
+        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-397'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='operator-&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -5548,7 +5559,7 @@ 
       <function-decl name='__distance&lt;char*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-86'/>
         <parameter type-id='type-id-86'/>
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <return type-id='type-id-105'/>
       </function-decl>
       <function-decl name='distance&lt;char*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -5557,33 +5568,33 @@ 
         <return type-id='type-id-105'/>
       </function-decl>
       <function-decl name='__iterator_category&lt;char*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-331'/>
-        <return type-id='type-id-427'/>
+        <parameter type-id='type-id-332'/>
+        <return type-id='type-id-428'/>
       </function-decl>
       <function-decl name='uninitialized_fill_n&lt;float*, long unsigned int, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='uninitialized_fill_n&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-416'/>
+        <parameter type-id='type-id-417'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='__uninitialized_fill_n_a&lt;float*, long unsigned int, float, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-343'/>
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-344'/>
+        <parameter type-id='type-id-395'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='__uninitialized_fill_n_a&lt;vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*, vtkPixelBufferObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-281'/>
+        <parameter type-id='type-id-282'/>
         <parameter type-id='type-id-4'/>
-        <parameter type-id='type-id-416'/>
-        <parameter type-id='type-id-396'/>
+        <parameter type-id='type-id-417'/>
+        <parameter type-id='type-id-397'/>
         <return type-id='type-id-30'/>
       </function-decl>
     </namespace-decl>
@@ -5593,23 +5604,23 @@ 
         <return type-id='type-id-64'/>
       </function-decl>
     </namespace-decl>
-    <class-decl name='vtkLineIntegralConvolution2D' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='105' column='1' is-declaration-only='yes' id='type-id-381'>
+    <class-decl name='vtkLineIntegralConvolution2D' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='105' column='1' is-declaration-only='yes' id='type-id-382'>
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-268'/>
       <member-type access='private'>
-        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='149' column='1' id='type-id-438'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='149' column='1' id='type-id-439'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
           <enumerator name='ENHANCE_CONTRAST_ON' value='1'/>
         </enum-decl>
       </member-type>
       <data-member access='protected' layout-offset-in-bits='384'>
-        <var-decl name='Comm' type-id='type-id-320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='362' column='1'/>
+        <var-decl name='Comm' type-id='type-id-321' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='362' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='448'>
         <var-decl name='Context' type-id='type-id-32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='364' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='512'>
-        <var-decl name='FBO' type-id='type-id-318' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='365' column='1'/>
+        <var-decl name='FBO' type-id='type-id-319' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='365' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='576'>
         <var-decl name='ShadersNeedBuild' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='367' column='1'/>
@@ -5672,21 +5683,21 @@ 
         <var-decl name='NormalizeVectors' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='387' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1664'>
-        <var-decl name='ComponentIds' type-id='type-id-310' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='388' column='1'/>
+        <var-decl name='ComponentIds' type-id='type-id-311' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='388' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1728'>
         <var-decl name='MaxNoiseValue' type-id='type-id-15' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='389' column='1'/>
       </data-member>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkLineIntegralConvolution2D' mangled-name='_ZN28vtkLineIntegralConvolution2DC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2DC1Ev'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkLineIntegralConvolution2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='392' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
-          <parameter type-id='type-id-383'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
+          <parameter type-id='type-id-384'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
@@ -5698,13 +5709,13 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='GetContext' mangled-name='_ZN28vtkLineIntegralConvolution2D10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D10GetContextEv'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-35'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
@@ -5712,83 +5723,83 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetTransformVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNormalizeVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetVTShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetLIC0Shader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetLICIShader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetLICNShader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetEEShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetCEShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetAAHShader' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetAAVShader' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='SetVectorTexParameters' mangled-name='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1099' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject'>
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='SetNoiseTexParameters' mangled-name='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1084' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject'>
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
@@ -5800,74 +5811,74 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetContext' mangled-name='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-35'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN28vtkLineIntegralConvolution2D3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='956' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D3NewEv'>
-          <return type-id='type-id-413'/>
+          <return type-id='type-id-414'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='BuildShaders' mangled-name='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-45'/>
           <parameter type-id='type-id-166'/>
           <parameter type-id='type-id-166'/>
-          <parameter type-id='type-id-316'/>
-          <parameter type-id='type-id-316'/>
-          <parameter type-id='type-id-316'/>
-          <return type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
+          <parameter type-id='type-id-317'/>
+          <parameter type-id='type-id-317'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-46'/>
-          <parameter type-id='type-id-316'/>
-          <parameter type-id='type-id-316'/>
-          <return type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
+          <parameter type-id='type-id-317'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
-          <parameter type-id='type-id-316'/>
-          <parameter type-id='type-id-316'/>
-          <return type-id='type-id-316'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
+          <parameter type-id='type-id-317'/>
+          <parameter type-id='type-id-317'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkLineIntegralConvolution2D' mangled-name='_ZN28vtkLineIntegralConvolution2DD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='994' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2DD1Ev'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='0'>
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK28vtkLineIntegralConvolution2D20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-384' is-artificial='yes'/>
+          <parameter type-id='type-id-385' is-artificial='yes'/>
           <return type-id='type-id-64'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='1'>
         <function-decl name='IsA' mangled-name='_ZN28vtkLineIntegralConvolution2D3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='PrintSelf' mangled-name='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='2129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-67'/>
           <parameter type-id='type-id-28'/>
           <return type-id='type-id-30'/>
@@ -5875,230 +5886,230 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='15'>
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK28vtkLineIntegralConvolution2D19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-384' is-artificial='yes'/>
+          <parameter type-id='type-id-385' is-artificial='yes'/>
           <return type-id='type-id-41'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='20'>
         <function-decl name='SetEnhancedLIC' mangled-name='_ZN28vtkLineIntegralConvolution2D14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='21'>
         <function-decl name='GetEnhancedLICMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D22GetEnhancedLICMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='22'>
         <function-decl name='GetEnhancedLICMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D22GetEnhancedLICMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='23'>
         <function-decl name='GetEnhancedLIC' mangled-name='_ZN28vtkLineIntegralConvolution2D14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='24'>
         <function-decl name='EnhancedLICOn' mangled-name='_ZN28vtkLineIntegralConvolution2D13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='25'>
         <function-decl name='EnhancedLICOff' mangled-name='_ZN28vtkLineIntegralConvolution2D14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='26'>
         <function-decl name='SetEnhanceContrast' mangled-name='_ZN28vtkLineIntegralConvolution2D18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='27'>
         <function-decl name='GetEnhanceContrastMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D26GetEnhanceContrastMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='28'>
         <function-decl name='GetEnhanceContrastMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D26GetEnhanceContrastMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='29'>
         <function-decl name='GetEnhanceContrast' mangled-name='_ZN28vtkLineIntegralConvolution2D18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='30'>
         <function-decl name='EnhanceContrastOn' mangled-name='_ZN28vtkLineIntegralConvolution2D17EnhanceContrastOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='31'>
         <function-decl name='EnhanceContrastOff' mangled-name='_ZN28vtkLineIntegralConvolution2D18EnhanceContrastOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='32'>
         <function-decl name='SetLowContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D31SetLowContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='33'>
         <function-decl name='GetLowContrastEnhancementFactorMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D39GetLowContrastEnhancementFactorMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='34'>
         <function-decl name='GetLowContrastEnhancementFactorMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D39GetLowContrastEnhancementFactorMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='35'>
         <function-decl name='GetLowContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D31GetLowContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='36'>
         <function-decl name='SetHighContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D32SetHighContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='37'>
         <function-decl name='GetHighContrastEnhancementFactorMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D40GetHighContrastEnhancementFactorMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='38'>
         <function-decl name='GetHighContrastEnhancementFactorMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D40GetHighContrastEnhancementFactorMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='39'>
         <function-decl name='GetHighContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D32GetHighContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='40'>
         <function-decl name='SetAntiAlias' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='41'>
         <function-decl name='GetAntiAliasMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D20GetAntiAliasMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='42'>
         <function-decl name='GetAntiAliasMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D20GetAntiAliasMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='43'>
         <function-decl name='GetAntiAlias' mangled-name='_ZN28vtkLineIntegralConvolution2D12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='44'>
         <function-decl name='AntiAliasOn' mangled-name='_ZN28vtkLineIntegralConvolution2D11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='45'>
         <function-decl name='AntiAliasOff' mangled-name='_ZN28vtkLineIntegralConvolution2D12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='46'>
         <function-decl name='SetNumberOfSteps' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='47'>
         <function-decl name='GetNumberOfStepsMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetNumberOfStepsMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='48'>
         <function-decl name='GetNumberOfStepsMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetNumberOfStepsMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='49'>
         <function-decl name='GetNumberOfSteps' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='190' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='50'>
         <function-decl name='SetStepSize' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='51'>
         <function-decl name='GetStepSizeMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetStepSizeMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='52'>
         <function-decl name='GetStepSizeMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetStepSizeMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='53'>
         <function-decl name='GetStepSize' mangled-name='_ZN28vtkLineIntegralConvolution2D11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='54'>
         <function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-47'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='55'>
         <function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsERiS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-52'/>
           <parameter type-id='type-id-52'/>
           <return type-id='type-id-30'/>
@@ -6106,194 +6117,194 @@ 
       </member-function>
       <member-function access='private' vtable-offset='56'>
         <function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsEPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-47'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='57'>
         <function-decl name='SetMaxNoiseValue' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='58'>
         <function-decl name='GetMaxNoiseValueMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaxNoiseValueMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='59'>
         <function-decl name='GetMaxNoiseValueMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaxNoiseValueMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='60'>
         <function-decl name='GetMaxNoiseValue' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='61'>
         <function-decl name='GetTransformVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetTransformVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='62'>
         <function-decl name='GetNormalizeVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='63'>
         <function-decl name='SetMaskThreshold' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='64'>
         <function-decl name='GetMaskThresholdMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaskThresholdMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='65'>
         <function-decl name='GetMaskThresholdMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaskThresholdMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='66'>
         <function-decl name='GetMaskThreshold' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='67'>
         <function-decl name='SetCommunicator' mangled-name='_ZN28vtkLineIntegralConvolution2D15SetCommunicatorEP22vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
-          <parameter type-id='type-id-320'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
+          <parameter type-id='type-id-321'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='68'>
         <function-decl name='GetCommunicator' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1014' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
-          <return type-id='type-id-320'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
+          <return type-id='type-id-321'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='69'>
         <function-decl name='GetGlobalMinMax' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
-          <parameter type-id='type-id-320'/>
-          <parameter type-id='type-id-386'/>
-          <parameter type-id='type-id-386'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
+          <parameter type-id='type-id-321'/>
+          <parameter type-id='type-id-387'/>
+          <parameter type-id='type-id-387'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='70'>
         <function-decl name='WriteTimerLog' mangled-name='_ZN28vtkLineIntegralConvolution2D13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='71'>
         <function-decl name='StartTimerEvent' mangled-name='_ZN28vtkLineIntegralConvolution2D15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='358' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='72'>
         <function-decl name='EndTimerEvent' mangled-name='_ZN28vtkLineIntegralConvolution2D13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-413' is-artificial='yes'/>
+          <parameter type-id='type-id-414' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='669' column='1' id='type-id-429'>
+      <class-decl name='__normal_iterator&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='669' column='1' id='type-id-430'>
         <data-member access='protected' layout-offset-in-bits='0'>
           <var-decl name='_M_current' type-id='type-id-55' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='671' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__normal_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='683' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-439' is-artificial='yes'/>
+            <parameter type-id='type-id-440' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__normal_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='686' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-439' is-artificial='yes'/>
-            <parameter type-id='type-id-440'/>
+            <parameter type-id='type-id-440' is-artificial='yes'/>
+            <parameter type-id='type-id-441'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='base' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPfSt6vectorIfSaIfEEE4baseEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-441' is-artificial='yes'/>
-            <return type-id='type-id-440'/>
+            <parameter type-id='type-id-442' is-artificial='yes'/>
+            <return type-id='type-id-441'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-323'>
+      <class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-324'>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-324' is-artificial='yes'/>
+            <parameter type-id='type-id-325' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-324' is-artificial='yes'/>
-            <parameter type-id='type-id-333'/>
+            <parameter type-id='type-id-325' is-artificial='yes'/>
+            <parameter type-id='type-id-334'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-324' is-artificial='yes'/>
+            <parameter type-id='type-id-325' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='new_allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-325'>
+      <class-decl name='new_allocator&lt;float&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-326'>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-326' is-artificial='yes'/>
-            <parameter type-id='type-id-336'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
+            <parameter type-id='type-id-337'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIfE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-337' is-artificial='yes'/>
+            <parameter type-id='type-id-338' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIfE8allocateEmPKv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-14'/>
             <return type-id='type-id-55'/>
@@ -6301,62 +6312,62 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIfE10deallocateEPfm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-326' is-artificial='yes'/>
+            <parameter type-id='type-id-327' is-artificial='yes'/>
             <parameter type-id='type-id-55'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='new_allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-327'>
+      <class-decl name='new_allocator&lt;vtkPixelBufferObject*&gt;' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-328'>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-328' is-artificial='yes'/>
-            <parameter type-id='type-id-339'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
+            <parameter type-id='type-id-340'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-340' is-artificial='yes'/>
+            <parameter type-id='type-id-341' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE8allocateEmPKv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-328' is-artificial='yes'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-14'/>
-            <return type-id='type-id-281'/>
+            <return type-id='type-id-282'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE10deallocateEPS2_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-328' is-artificial='yes'/>
-            <parameter type-id='type-id-281'/>
+            <parameter type-id='type-id-329' is-artificial='yes'/>
+            <parameter type-id='type-id-282'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-442'/>
-      <class-decl name='__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-443'/>
-      <class-decl name='__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-444'/>
-      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-445'/>
-      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-446'/>
+      <class-decl name='__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-443'/>
+      <class-decl name='__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-444'/>
+      <class-decl name='__normal_iterator&lt;const float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-445'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject* const*, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-446'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelBufferObject**, std::vector&lt;vtkPixelBufferObject*, std::allocator&lt;vtkPixelBufferObject*&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-447'/>
       <function-decl name='__is_null_pointer&lt;char&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/type_traits.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-86'/>
         <return type-id='type-id-1'/>
@@ -6367,9 +6378,9 @@ 
     <pointer-type-def type-id='type-id-69' size-in-bits='64' id='type-id-70'/>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <typedef-decl name='vtkTypeInt32' type-id='type-id-17' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkType.h' line='197' column='1' id='type-id-447'/>
-    <class-decl name='vtkStructuredGridLIC2D' size-in-bits='1472' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='51' column='1' id='type-id-448'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-449'/>
+    <typedef-decl name='vtkTypeInt32' type-id='type-id-17' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkType.h' line='197' column='1' id='type-id-448'/>
+    <class-decl name='vtkStructuredGridLIC2D' size-in-bits='1472' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='51' column='1' id='type-id-449'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-450'/>
       <data-member access='protected' layout-offset-in-bits='1024'>
         <var-decl name='Steps' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='149' column='1'/>
       </data-member>
@@ -6399,14 +6410,14 @@ 
       </data-member>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkStructuredGridLIC2D' mangled-name='_ZN22vtkStructuredGridLIC2DC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2DC1Ev'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkStructuredGridLIC2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
-          <parameter type-id='type-id-451'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
+          <parameter type-id='type-id-452'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
@@ -6418,33 +6429,33 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='GetContext' mangled-name='_ZN22vtkStructuredGridLIC2D10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D10GetContextEv'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-35'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='AllocateScalars' mangled-name='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
-          <parameter type-id='type-id-452'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
+          <parameter type-id='type-id-453'/>
           <parameter type-id='type-id-237'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetContext' mangled-name='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-35'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN22vtkStructuredGridLIC2D3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='50' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D3NewEv'>
-          <return type-id='type-id-450'/>
+          <return type-id='type-id-451'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='AllocateOutputData' mangled-name='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-229'/>
           <parameter type-id='type-id-237'/>
           <return type-id='type-id-30'/>
@@ -6452,27 +6463,27 @@ 
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkStructuredGridLIC2D' mangled-name='_ZN22vtkStructuredGridLIC2DD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2DD1Ev'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='0'>
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK22vtkStructuredGridLIC2D20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-453' is-artificial='yes'/>
+          <parameter type-id='type-id-454' is-artificial='yes'/>
           <return type-id='type-id-64'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='1'>
         <function-decl name='IsA' mangled-name='_ZN22vtkStructuredGridLIC2D3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='PrintSelf' mangled-name='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='840' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-67'/>
           <parameter type-id='type-id-28'/>
           <return type-id='type-id-30'/>
@@ -6480,13 +6491,13 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='15'>
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK22vtkStructuredGridLIC2D19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-453' is-artificial='yes'/>
+          <parameter type-id='type-id-454' is-artificial='yes'/>
           <return type-id='type-id-41'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='60'>
         <function-decl name='FillInputPortInformation' mangled-name='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-237'/>
           <return type-id='type-id-17'/>
@@ -6494,7 +6505,7 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='61'>
         <function-decl name='FillOutputPortInformation' mangled-name='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-237'/>
           <return type-id='type-id-17'/>
@@ -6502,7 +6513,7 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='69'>
         <function-decl name='RequestInformation' mangled-name='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-237'/>
           <parameter type-id='type-id-240'/>
           <parameter type-id='type-id-239'/>
@@ -6511,7 +6522,7 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='70'>
         <function-decl name='RequestData' mangled-name='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-237'/>
           <parameter type-id='type-id-240'/>
           <parameter type-id='type-id-239'/>
@@ -6520,7 +6531,7 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='71'>
         <function-decl name='RequestUpdateExtent' mangled-name='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-237'/>
           <parameter type-id='type-id-240'/>
           <parameter type-id='type-id-239'/>
@@ -6529,115 +6540,115 @@ 
       </member-function>
       <member-function access='private' vtable-offset='72'>
         <function-decl name='SetSteps' mangled-name='_ZN22vtkStructuredGridLIC2D8SetStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='73'>
         <function-decl name='GetSteps' mangled-name='_ZN22vtkStructuredGridLIC2D8GetStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='74'>
         <function-decl name='SetStepSize' mangled-name='_ZN22vtkStructuredGridLIC2D11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='75'>
         <function-decl name='GetStepSize' mangled-name='_ZN22vtkStructuredGridLIC2D11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='76'>
         <function-decl name='SetMagnification' mangled-name='_ZN22vtkStructuredGridLIC2D16SetMagnificationEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='77'>
         <function-decl name='GetMagnificationMinValue' mangled-name='_ZN22vtkStructuredGridLIC2D24GetMagnificationMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='78'>
         <function-decl name='GetMagnificationMaxValue' mangled-name='_ZN22vtkStructuredGridLIC2D24GetMagnificationMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='79'>
         <function-decl name='GetMagnification' mangled-name='_ZN22vtkStructuredGridLIC2D16GetMagnificationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='80'>
         <function-decl name='GetOpenGLExtensionsSupported' mangled-name='_ZN22vtkStructuredGridLIC2D28GetOpenGLExtensionsSupportedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-450' is-artificial='yes'/>
+          <parameter type-id='type-id-451' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkAtomicInt&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='308' column='1' id='type-id-454'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-455'/>
+    <class-decl name='vtkAtomicInt&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='308' column='1' id='type-id-455'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-456'/>
       <member-function access='private'>
         <function-decl name='vtkAtomicInt' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-456' is-artificial='yes'/>
+          <parameter type-id='type-id-457' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkAtomicInt' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-456' is-artificial='yes'/>
+          <parameter type-id='type-id-457' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator int' mangled-name='_ZNK12vtkAtomicIntIiEcviEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='363' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-457' is-artificial='yes'/>
+          <parameter type-id='type-id-458' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <qualified-type-def type-id='type-id-455' const='yes' id='type-id-458'/>
-    <pointer-type-def type-id='type-id-458' size-in-bits='64' id='type-id-459'/>
-    <qualified-type-def type-id='type-id-454' const='yes' id='type-id-460'/>
-    <pointer-type-def type-id='type-id-460' size-in-bits='64' id='type-id-457'/>
-    <qualified-type-def type-id='type-id-448' const='yes' id='type-id-461'/>
-    <reference-type-def kind='lvalue' type-id='type-id-461' size-in-bits='64' id='type-id-451'/>
-    <pointer-type-def type-id='type-id-461' size-in-bits='64' id='type-id-453'/>
-    <pointer-type-def type-id='type-id-455' size-in-bits='64' id='type-id-462'/>
-    <pointer-type-def type-id='type-id-454' size-in-bits='64' id='type-id-456'/>
-    <pointer-type-def type-id='type-id-463' size-in-bits='64' id='type-id-464'/>
-    <pointer-type-def type-id='type-id-465' size-in-bits='64' id='type-id-466'/>
-    <pointer-type-def type-id='type-id-467' size-in-bits='64' id='type-id-452'/>
-    <pointer-type-def type-id='type-id-448' size-in-bits='64' id='type-id-450'/>
-    <class-decl name='vtkFrameBufferObject' visibility='default' is-declaration-only='yes' id='type-id-463'>
+    <qualified-type-def type-id='type-id-456' const='yes' id='type-id-459'/>
+    <pointer-type-def type-id='type-id-459' size-in-bits='64' id='type-id-460'/>
+    <qualified-type-def type-id='type-id-455' const='yes' id='type-id-461'/>
+    <pointer-type-def type-id='type-id-461' size-in-bits='64' id='type-id-458'/>
+    <qualified-type-def type-id='type-id-449' const='yes' id='type-id-462'/>
+    <reference-type-def kind='lvalue' type-id='type-id-462' size-in-bits='64' id='type-id-452'/>
+    <pointer-type-def type-id='type-id-462' size-in-bits='64' id='type-id-454'/>
+    <pointer-type-def type-id='type-id-456' size-in-bits='64' id='type-id-463'/>
+    <pointer-type-def type-id='type-id-455' size-in-bits='64' id='type-id-457'/>
+    <pointer-type-def type-id='type-id-464' size-in-bits='64' id='type-id-465'/>
+    <pointer-type-def type-id='type-id-466' size-in-bits='64' id='type-id-467'/>
+    <pointer-type-def type-id='type-id-468' size-in-bits='64' id='type-id-453'/>
+    <pointer-type-def type-id='type-id-449' size-in-bits='64' id='type-id-451'/>
+    <class-decl name='vtkFrameBufferObject' visibility='default' is-declaration-only='yes' id='type-id-464'>
       <member-function access='private'>
         <function-decl name='SetActiveBuffer' mangled-name='_ZN20vtkFrameBufferObject15SetActiveBufferEj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-464' is-artificial='yes'/>
+          <parameter type-id='type-id-465' is-artificial='yes'/>
           <parameter type-id='type-id-13'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkPoints' visibility='default' is-declaration-only='yes' id='type-id-465'>
+    <class-decl name='vtkPoints' visibility='default' is-declaration-only='yes' id='type-id-466'>
       <member-function access='private'>
         <function-decl name='GetData' mangled-name='_ZN9vtkPoints7GetDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkPoints.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-466' is-artificial='yes'/>
+          <parameter type-id='type-id-467' is-artificial='yes'/>
           <return type-id='type-id-225'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkStructuredExtent' visibility='default' is-declaration-only='yes' id='type-id-468'>
+    <class-decl name='vtkStructuredExtent' visibility='default' is-declaration-only='yes' id='type-id-469'>
       <member-function access='private' static='yes'>
         <function-decl name='GetDimensions' mangled-name='_ZN19vtkStructuredExtent13GetDimensionsEPKiPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkStructuredExtent.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-46'/>
@@ -6646,15 +6657,15 @@ 
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkStructuredGrid' visibility='default' is-declaration-only='yes' id='type-id-467'>
+    <class-decl name='vtkStructuredGrid' visibility='default' is-declaration-only='yes' id='type-id-468'>
       <member-function access='private' static='yes'>
         <function-decl name='SafeDownCast' mangled-name='_ZN17vtkStructuredGrid12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkStructuredGrid.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-41'/>
-          <return type-id='type-id-452'/>
+          <return type-id='type-id-453'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkStructuredGridAlgorithm' visibility='default' is-declaration-only='yes' id='type-id-449'>
+    <class-decl name='vtkStructuredGridAlgorithm' visibility='default' is-declaration-only='yes' id='type-id-450'>
       <member-function access='private' static='yes'>
         <function-decl name='IsTypeOf' mangled-name='_ZN26vtkStructuredGridAlgorithm8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/ExecutionModel/vtkStructuredGridAlgorithm.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-64'/>
@@ -6663,41 +6674,41 @@ 
       </member-function>
     </class-decl>
     <namespace-decl name='detail'>
-      <class-decl name='vtkAtomicIntImpl&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='85' column='1' id='type-id-455'>
+      <class-decl name='vtkAtomicIntImpl&lt;int&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='85' column='1' id='type-id-456'>
         <data-member access='protected' layout-offset-in-bits='0'>
-          <var-decl name='Value' type-id='type-id-447' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='182' column='1'/>
+          <var-decl name='Value' type-id='type-id-448' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='182' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='load' mangled-name='_ZNK6detail16vtkAtomicIntImplIiE4loadEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-459' is-artificial='yes'/>
-            <return type-id='type-id-447'/>
+            <parameter type-id='type-id-460' is-artificial='yes'/>
+            <return type-id='type-id-448'/>
           </function-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <reference-type-def kind='lvalue' type-id='type-id-429' size-in-bits='64' id='type-id-469'/>
-    <pointer-type-def type-id='type-id-429' size-in-bits='64' id='type-id-439'/>
-    <qualified-type-def type-id='type-id-429' const='yes' id='type-id-470'/>
-    <reference-type-def kind='lvalue' type-id='type-id-470' size-in-bits='64' id='type-id-471'/>
-    <pointer-type-def type-id='type-id-470' size-in-bits='64' id='type-id-441'/>
-    <qualified-type-def type-id='type-id-105' const='yes' id='type-id-472'/>
-    <reference-type-def kind='lvalue' type-id='type-id-472' size-in-bits='64' id='type-id-473'/>
-    <qualified-type-def type-id='type-id-282' const='yes' id='type-id-474'/>
-    <reference-type-def kind='lvalue' type-id='type-id-474' size-in-bits='64' id='type-id-475'/>
-    <pointer-type-def type-id='type-id-474' size-in-bits='64' id='type-id-284'/>
-    <qualified-type-def type-id='type-id-476' const='yes' id='type-id-477'/>
-    <reference-type-def kind='lvalue' type-id='type-id-477' size-in-bits='64' id='type-id-478'/>
-    <pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-479'/>
-    <qualified-type-def type-id='type-id-55' const='yes' id='type-id-480'/>
-    <reference-type-def kind='lvalue' type-id='type-id-480' size-in-bits='64' id='type-id-440'/>
-    <reference-type-def kind='lvalue' type-id='type-id-282' size-in-bits='64' id='type-id-285'/>
-    <pointer-type-def type-id='type-id-282' size-in-bits='64' id='type-id-283'/>
-    <pointer-type-def type-id='type-id-476' size-in-bits='64' id='type-id-481'/>
-    <reference-type-def kind='lvalue' type-id='type-id-316' size-in-bits='64' id='type-id-482'/>
+    <reference-type-def kind='lvalue' type-id='type-id-430' size-in-bits='64' id='type-id-470'/>
+    <pointer-type-def type-id='type-id-430' size-in-bits='64' id='type-id-440'/>
+    <qualified-type-def type-id='type-id-430' const='yes' id='type-id-471'/>
+    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-472'/>
+    <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-442'/>
+    <qualified-type-def type-id='type-id-105' const='yes' id='type-id-473'/>
+    <reference-type-def kind='lvalue' type-id='type-id-473' size-in-bits='64' id='type-id-474'/>
+    <qualified-type-def type-id='type-id-283' const='yes' id='type-id-475'/>
+    <reference-type-def kind='lvalue' type-id='type-id-475' size-in-bits='64' id='type-id-476'/>
+    <pointer-type-def type-id='type-id-475' size-in-bits='64' id='type-id-285'/>
+    <qualified-type-def type-id='type-id-477' const='yes' id='type-id-478'/>
+    <reference-type-def kind='lvalue' type-id='type-id-478' size-in-bits='64' id='type-id-479'/>
+    <pointer-type-def type-id='type-id-478' size-in-bits='64' id='type-id-480'/>
+    <qualified-type-def type-id='type-id-55' const='yes' id='type-id-481'/>
+    <reference-type-def kind='lvalue' type-id='type-id-481' size-in-bits='64' id='type-id-441'/>
+    <reference-type-def kind='lvalue' type-id='type-id-283' size-in-bits='64' id='type-id-286'/>
+    <pointer-type-def type-id='type-id-283' size-in-bits='64' id='type-id-284'/>
+    <pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-482'/>
+    <reference-type-def kind='lvalue' type-id='type-id-317' size-in-bits='64' id='type-id-483'/>
     <namespace-decl name='std'>
-      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' id='type-id-483'>
+      <class-decl name='__iter_swap&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' id='type-id-484'>
         <member-function access='public' static='yes'>
           <function-decl name='iter_swap&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-133'/>
@@ -6706,15 +6717,15 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-484'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-485'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-282'/>
-            <return type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-485'>
+      <class-decl name='__niter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-486'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-133'/>
@@ -6722,7 +6733,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-486'>
+      <class-decl name='__miter_base&lt;float*, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-487'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-55'/>
@@ -6730,15 +6741,15 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-487'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-488'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-282'/>
-            <return type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
+            <return type-id='type-id-283'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-488'>
+      <class-decl name='__miter_base&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-489'>
         <member-function access='public' static='yes'>
           <function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-133'/>
@@ -6746,11 +6757,11 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' id='type-id-489'>
+      <class-decl name='__copy_move&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' id='type-id-490'>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_m&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-283'/>
             <parameter type-id='type-id-133'/>
             <return type-id='type-id-133'/>
           </function-decl>
@@ -6764,7 +6775,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' id='type-id-490'>
+      <class-decl name='__copy_move_backward&lt;false, false, std::random_access_iterator_tag&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' id='type-id-491'>
         <member-function access='public' static='yes'>
           <function-decl name='__copy_move_b&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-133'/>
@@ -6774,11 +6785,11 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' id='type-id-491'>
+      <class-decl name='__uninitialized_copy&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' id='type-id-492'>
         <member-function access='public' static='yes'>
           <function-decl name='uninitialized_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-282'/>
-            <parameter type-id='type-id-282'/>
+            <parameter type-id='type-id-283'/>
+            <parameter type-id='type-id-283'/>
             <parameter type-id='type-id-133'/>
             <return type-id='type-id-133'/>
           </function-decl>
@@ -6800,7 +6811,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' id='type-id-492'>
+      <class-decl name='__uninitialized_copy&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' id='type-id-493'>
         <member-function access='public' static='yes'>
           <function-decl name='uninitialized_copy&lt;float*, float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-55'/>
@@ -6886,8 +6897,8 @@ 
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='__copy_move_a&lt;false, std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <parameter type-id='type-id-133'/>
         <return type-id='type-id-133'/>
       </function-decl>
@@ -6904,8 +6915,8 @@ 
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='__copy_move_a2&lt;false, std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <parameter type-id='type-id-133'/>
         <return type-id='type-id-133'/>
       </function-decl>
@@ -6922,8 +6933,8 @@ 
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='458' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <parameter type-id='type-id-133'/>
         <return type-id='type-id-133'/>
       </function-decl>
@@ -6972,18 +6983,18 @@ 
       <function-decl name='__fill_a&lt;float*, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='697' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-55'/>
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='fill&lt;float*, float&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='730' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-55'/>
-        <parameter type-id='type-id-343'/>
+        <parameter type-id='type-id-344'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='operator==&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-475'/>
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
+        <parameter type-id='type-id-476'/>
         <return type-id='type-id-1'/>
       </function-decl>
       <function-decl name='operator==&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -6992,8 +7003,8 @@ 
         <return type-id='type-id-1'/>
       </function-decl>
       <function-decl name='operator!=&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-475'/>
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
+        <parameter type-id='type-id-476'/>
         <return type-id='type-id-1'/>
       </function-decl>
       <function-decl name='operator!=&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7007,8 +7018,8 @@ 
         <return type-id='type-id-1'/>
       </function-decl>
       <function-decl name='operator-&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-475'/>
-        <parameter type-id='type-id-475'/>
+        <parameter type-id='type-id-476'/>
+        <parameter type-id='type-id-476'/>
         <return type-id='type-id-105'/>
       </function-decl>
       <function-decl name='__push_heap&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, long int, vtkPixelExtent&gt;' mangled-name='_ZSt11__push_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_heap.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt11__push_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_'>
@@ -7042,20 +7053,20 @@ 
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='__distance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-428'/>
         <return type-id='type-id-105'/>
       </function-decl>
       <function-decl name='__distance&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-133'/>
         <parameter type-id='type-id-133'/>
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <return type-id='type-id-105'/>
       </function-decl>
       <function-decl name='distance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <return type-id='type-id-105'/>
       </function-decl>
       <function-decl name='distance&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7064,19 +7075,19 @@ 
         <return type-id='type-id-105'/>
       </function-decl>
       <function-decl name='__advance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, long int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-285'/>
+        <parameter type-id='type-id-286'/>
         <parameter type-id='type-id-20'/>
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='__advance&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, long int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-194'/>
         <parameter type-id='type-id-20'/>
-        <parameter type-id='type-id-427'/>
+        <parameter type-id='type-id-428'/>
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='advance&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, long int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-285'/>
+        <parameter type-id='type-id-286'/>
         <parameter type-id='type-id-20'/>
         <return type-id='type-id-30'/>
       </function-decl>
@@ -7086,12 +7097,12 @@ 
         <return type-id='type-id-30'/>
       </function-decl>
       <function-decl name='__iterator_category&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-475'/>
-        <return type-id='type-id-427'/>
+        <parameter type-id='type-id-476'/>
+        <return type-id='type-id-428'/>
       </function-decl>
       <function-decl name='__iterator_category&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-135'/>
-        <return type-id='type-id-427'/>
+        <return type-id='type-id-428'/>
       </function-decl>
       <function-decl name='uninitialized_copy&lt;float*, float*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-55'/>
@@ -7100,8 +7111,8 @@ 
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='uninitialized_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <parameter type-id='type-id-133'/>
         <return type-id='type-id-133'/>
       </function-decl>
@@ -7115,12 +7126,12 @@ 
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-55'/>
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-395'/>
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='__uninitialized_copy_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, vtkPixelExtent&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <parameter type-id='type-id-133'/>
         <parameter type-id='type-id-202'/>
         <return type-id='type-id-133'/>
@@ -7143,14 +7154,14 @@ 
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-55'/>
         <parameter type-id='type-id-55'/>
-        <parameter type-id='type-id-394'/>
+        <parameter type-id='type-id-395'/>
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='__uninitialized_move_a&lt;float*, float*, std::allocator&lt;float&gt; &gt;' mangled-name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_'>
         <parameter type-id='type-id-55' name='__first' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1'/>
         <parameter type-id='type-id-55' name='__last' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1'/>
         <parameter type-id='type-id-55' name='__result' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
-        <parameter type-id='type-id-394' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
+        <parameter type-id='type-id-395' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
         <return type-id='type-id-55'/>
       </function-decl>
       <function-decl name='__uninitialized_move_a&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::allocator&lt;vtkPixelExtent&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7161,8 +7172,8 @@ 
         <return type-id='type-id-133'/>
       </function-decl>
       <function-decl name='__uninitialized_copy_move&lt;std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::allocator&lt;vtkPixelExtent&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <parameter type-id='type-id-133'/>
         <parameter type-id='type-id-133'/>
         <parameter type-id='type-id-133'/>
@@ -7181,8 +7192,8 @@ 
       <function-decl name='__uninitialized_move_copy&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, const vtkPixelExtent&amp;, const vtkPixelExtent*&gt;, std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt;, std::allocator&lt;vtkPixelExtent&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-133'/>
         <parameter type-id='type-id-133'/>
-        <parameter type-id='type-id-282'/>
-        <parameter type-id='type-id-282'/>
+        <parameter type-id='type-id-283'/>
+        <parameter type-id='type-id-283'/>
         <parameter type-id='type-id-133'/>
         <parameter type-id='type-id-202'/>
         <return type-id='type-id-133'/>
@@ -7197,7 +7208,7 @@ 
         <return type-id='type-id-133'/>
       </function-decl>
     </namespace-decl>
-    <class-decl name='vtkSurfaceLICComposite' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='38' column='1' is-declaration-only='yes' id='type-id-476'>
+    <class-decl name='vtkSurfaceLICComposite' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='38' column='1' is-declaration-only='yes' id='type-id-477'>
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-268'/>
       <data-member access='protected' layout-offset-in-bits='384'>
         <var-decl name='Pass' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='241' column='1'/>
@@ -7243,14 +7254,14 @@ 
       </data-member>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkSurfaceLICComposite' mangled-name='_ZN22vtkSurfaceLICCompositeC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICCompositeC1Ev'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSurfaceLICComposite' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
-          <parameter type-id='type-id-478'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
+          <parameter type-id='type-id-479'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
@@ -7262,14 +7273,14 @@ 
       </member-function>
       <member-function access='protected'>
         <function-decl name='GetFudgeFactor' mangled-name='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-47'/>
           <return type-id='type-id-16'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='GetPixelBounds' mangled-name='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-55'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-51'/>
@@ -7278,7 +7289,7 @@ 
       </member-function>
       <member-function access='protected'>
         <function-decl name='VectorMax' mangled-name='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-45'/>
           <parameter type-id='type-id-55'/>
           <return type-id='type-id-16'/>
@@ -7286,21 +7297,21 @@ 
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN22vtkSurfaceLICComposite3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite3NewEv'>
-          <return type-id='type-id-481'/>
+          <return type-id='type-id-482'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='VectorMax' mangled-name='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-166'/>
           <parameter type-id='type-id-55'/>
-          <parameter type-id='type-id-408'/>
+          <parameter type-id='type-id-409'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Initialize' mangled-name='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-45'/>
           <parameter type-id='type-id-166'/>
           <parameter type-id='type-id-17'/>
@@ -7321,7 +7332,7 @@ 
       </member-function>
       <member-function access='protected'>
         <function-decl name='MakeDecompDisjoint' mangled-name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-166'/>
           <parameter type-id='type-id-210'/>
           <parameter type-id='type-id-55'/>
@@ -7330,7 +7341,7 @@ 
       </member-function>
       <member-function access='protected'>
         <function-decl name='AddGuardPixels' mangled-name='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-166'/>
           <parameter type-id='type-id-210'/>
           <parameter type-id='type-id-210'/>
@@ -7340,52 +7351,52 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='InitializeCompositeExtents' mangled-name='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-55'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetCompositeExtents' mangled-name='_ZNK22vtkSurfaceLICComposite19GetCompositeExtentsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <return type-id='type-id-166'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetDisjointGuardExtents' mangled-name='_ZNK22vtkSurfaceLICComposite23GetDisjointGuardExtentsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <return type-id='type-id-166'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetStrategy' mangled-name='_ZN22vtkSurfaceLICComposite11GetStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkSurfaceLICComposite' mangled-name='_ZN22vtkSurfaceLICCompositeD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICCompositeD1Ev'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='0'>
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK22vtkSurfaceLICComposite20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <return type-id='type-id-64'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='1'>
         <function-decl name='IsA' mangled-name='_ZN22vtkSurfaceLICComposite3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='PrintSelf' mangled-name='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-67'/>
           <parameter type-id='type-id-28'/>
           <return type-id='type-id-30'/>
@@ -7393,106 +7404,106 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='15'>
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK22vtkSurfaceLICComposite19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-479' is-artificial='yes'/>
+          <parameter type-id='type-id-480' is-artificial='yes'/>
           <return type-id='type-id-41'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='20'>
         <function-decl name='SetContext' mangled-name='_ZN22vtkSurfaceLICComposite10SetContextEP21vtkOpenGLRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-243'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='21'>
         <function-decl name='GetContext' mangled-name='_ZN22vtkSurfaceLICComposite10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <return type-id='type-id-243'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='22'>
         <function-decl name='SetCommunicator' mangled-name='_ZN22vtkSurfaceLICComposite15SetCommunicatorEP22vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
-          <parameter type-id='type-id-320'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
+          <parameter type-id='type-id-321'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='23'>
         <function-decl name='RestoreDefaultCommunicator' mangled-name='_ZN22vtkSurfaceLICComposite26RestoreDefaultCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='24'>
         <function-decl name='BuildProgram' mangled-name='_ZN22vtkSurfaceLICComposite12BuildProgramEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-55'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='25'>
         <function-decl name='Gather' mangled-name='_ZN22vtkSurfaceLICComposite6GatherEPviiRP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-14'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
-          <parameter type-id='type-id-482'/>
+          <parameter type-id='type-id-483'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='26'>
         <function-decl name='Scatter' mangled-name='_ZN22vtkSurfaceLICComposite7ScatterEPviiRP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-481' is-artificial='yes'/>
+          <parameter type-id='type-id-482' is-artificial='yes'/>
           <parameter type-id='type-id-14'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
-          <parameter type-id='type-id-482'/>
+          <parameter type-id='type-id-483'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='operator-&lt;float*, std::vector&lt;float, std::allocator&lt;float&gt; &gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-471'/>
-        <parameter type-id='type-id-471'/>
+        <parameter type-id='type-id-472'/>
+        <parameter type-id='type-id-472'/>
         <return type-id='type-id-105'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-493'>
+    <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-494'>
       <data-member access='private' layout-offset-in-bits='0'>
         <var-decl name='ModifiedTime' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='63' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkTimeStamp' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-494' is-artificial='yes'/>
+          <parameter type-id='type-id-495' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator&lt;' mangled-name='_ZN12vtkTimeStampltERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-494' is-artificial='yes'/>
-          <parameter type-id='type-id-495'/>
+          <parameter type-id='type-id-495' is-artificial='yes'/>
+          <parameter type-id='type-id-496'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-496'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-497'/>
+    <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-497'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-498'/>
       <data-member access='protected' layout-offset-in-bits='1664'>
-        <var-decl name='SurfaceLICPainter' type-id='type-id-498' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
+        <var-decl name='SurfaceLICPainter' type-id='type-id-499' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
       </data-member>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterC2Ev'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSurfaceLICDefaultPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
-          <parameter type-id='type-id-500'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
+          <parameter type-id='type-id-501'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
@@ -7504,39 +7515,39 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
-          <parameter type-id='type-id-498'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
+          <parameter type-id='type-id-499'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter3NewEv'>
-          <return type-id='type-id-499'/>
+          <return type-id='type-id-500'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterD1Ev'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='0'>
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-502' is-artificial='yes'/>
           <return type-id='type-id-64'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='1'>
         <function-decl name='IsA' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='PrintSelf' mangled-name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <parameter type-id='type-id-67'/>
           <parameter type-id='type-id-28'/>
           <return type-id='type-id-30'/>
@@ -7544,58 +7555,58 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='14'>
         <function-decl name='ReportReferences' mangled-name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
-          <parameter type-id='type-id-502'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
+          <parameter type-id='type-id-503'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='15'>
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-501' is-artificial='yes'/>
+          <parameter type-id='type-id-502' is-artificial='yes'/>
           <return type-id='type-id-41'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='31'>
         <function-decl name='UpdateBounds' mangled-name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <parameter type-id='type-id-186'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='47'>
         <function-decl name='BuildPainterChain' mangled-name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='48'>
         <function-decl name='GetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20GetSurfaceLICPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-499' is-artificial='yes'/>
-          <return type-id='type-id-498'/>
+          <parameter type-id='type-id-500' is-artificial='yes'/>
+          <return type-id='type-id-499'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-503'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-504'/>
+    <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-504'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-505'/>
       <member-type access='protected'>
-        <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-505'>
+        <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-506'>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='LightMonitor' type-id='type-id-506' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
+            <var-decl name='LightMonitor' type-id='type-id-507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='512'>
-            <var-decl name='ViewMonitor' type-id='type-id-507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
+            <var-decl name='ViewMonitor' type-id='type-id-508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='576'>
-            <var-decl name='BGMonitor' type-id='type-id-508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
+            <var-decl name='BGMonitor' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='640'>
-            <var-decl name='Context' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
+            <var-decl name='Context' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='704'>
             <var-decl name='GLSupport' type-id='type-id-1' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='831' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='736'>
-            <var-decl name='Viewsize' type-id='type-id-310' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='832' column='1'/>
+            <var-decl name='Viewsize' type-id='type-id-311' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='832' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='832'>
             <var-decl name='LastInputDataSetMTime' type-id='type-id-21' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='833' column='1'/>
@@ -7634,67 +7645,67 @@ 
             <var-decl name='ColorNeedsUpdate' type-id='type-id-1' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='846' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='1856'>
-            <var-decl name='Communicator' type-id='type-id-320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='848' column='1'/>
+            <var-decl name='Communicator' type-id='type-id-321' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='848' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='1920'>
-            <var-decl name='DepthImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
+            <var-decl name='DepthImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='1984'>
-            <var-decl name='GeometryImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
+            <var-decl name='GeometryImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2048'>
-            <var-decl name='VectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
+            <var-decl name='VectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2112'>
-            <var-decl name='CompositeVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
+            <var-decl name='CompositeVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2176'>
-            <var-decl name='MaskVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
+            <var-decl name='MaskVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2240'>
-            <var-decl name='CompositeMaskVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
+            <var-decl name='CompositeMaskVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2304'>
-            <var-decl name='NoiseImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
+            <var-decl name='NoiseImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2368'>
-            <var-decl name='LICImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
+            <var-decl name='LICImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2432'>
-            <var-decl name='RGBColorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
+            <var-decl name='RGBColorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2496'>
-            <var-decl name='HSLColorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
+            <var-decl name='HSLColorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2560'>
-            <var-decl name='Noise' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
+            <var-decl name='Noise' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2624'>
-            <var-decl name='FBO' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
+            <var-decl name='FBO' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2688'>
-            <var-decl name='RenderGeometryPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
+            <var-decl name='RenderGeometryPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2752'>
-            <var-decl name='ColorPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
+            <var-decl name='ColorPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2816'>
-            <var-decl name='ColorEnhancePass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
+            <var-decl name='ColorEnhancePass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2880'>
-            <var-decl name='CopyPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
+            <var-decl name='CopyPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='2944'>
-            <var-decl name='LightingHelper' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
+            <var-decl name='LightingHelper' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3008'>
-            <var-decl name='ColorMaterialHelper' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
+            <var-decl name='ColorMaterialHelper' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3072'>
-            <var-decl name='Compositor' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
+            <var-decl name='Compositor' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3136'>
-            <var-decl name='LICer' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
+            <var-decl name='LICer' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3200'>
             <var-decl name='FieldAssociation' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='878' column='1'/>
@@ -7703,7 +7714,7 @@ 
             <var-decl name='FieldAttributeType' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='879' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3264'>
-            <var-decl name='FieldName' type-id='type-id-431' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='880' column='1'/>
+            <var-decl name='FieldName' type-id='type-id-432' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='880' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='3328'>
             <var-decl name='FieldNameSet' type-id='type-id-1' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='881' column='1'/>
@@ -7713,26 +7724,26 @@ 
           </data-member>
           <member-function access='private' constructor='yes'>
             <function-decl name='vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='888' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
           <member-function access='private' destructor='yes'>
             <function-decl name='~vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='927' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-17' is-artificial='yes'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='UpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals9UpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1116' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1474' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-55'/>
               <parameter type-id='type-id-17'/>
               <parameter type-id='type-id-51'/>
@@ -7741,7 +7752,7 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='ViewportQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals25ViewportQuadTextureCoordsERK14vtkPixelExtentS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1146' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-45'/>
               <parameter type-id='type-id-45'/>
               <parameter type-id='type-id-56'/>
@@ -7750,7 +7761,7 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='idx' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals3idxEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1252' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-17'/>
               <parameter type-id='type-id-17'/>
               <return type-id='type-id-17'/>
@@ -7758,23 +7769,23 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='VisibilityTest' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14VisibilityTestEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1263' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-186'/>
               <return type-id='type-id-1'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='AllocateDepthTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals20AllocateDepthTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1068' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-35'/>
               <parameter type-id='type-id-47'/>
-              <parameter type-id='type-id-519'/>
+              <parameter type-id='type-id-520'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='AllocateTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals16AllocateTexturesEP15vtkRenderWindowPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-35'/>
               <parameter type-id='type-id-47'/>
               <return type-id='type-id-30'/>
@@ -7782,26 +7793,26 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='ViewChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals11ViewChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1236' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <return type-id='type-id-1'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='LightingChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15LightingChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1219' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <return type-id='type-id-1'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='BackgroundChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals17BackgroundChangedEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1244' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
-              <parameter type-id='type-id-520'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
+              <parameter type-id='type-id-521'/>
               <return type-id='type-id-1'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiRSt5dequeI14vtkPixelExtentSaIS3_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1496' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-55'/>
               <parameter type-id='type-id-17'/>
               <parameter type-id='type-id-210'/>
@@ -7810,7 +7821,7 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='Updated' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals7UpdatedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1102' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
@@ -7822,29 +7833,29 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='ClearGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals22ClearGraphicsResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='989' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='ClearTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ClearTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1008' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='AllocateTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15AllocateTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1041' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-35'/>
               <parameter type-id='type-id-47'/>
-              <parameter type-id='type-id-519'/>
+              <parameter type-id='type-id-520'/>
               <parameter type-id='type-id-17'/>
               <return type-id='type-id-30'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEPdPiS1_R14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1299' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-186'/>
               <parameter type-id='type-id-47'/>
               <parameter type-id='type-id-186'/>
@@ -7854,7 +7865,7 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEP13vtkDataObjectPiR14vtkPixelExtentRSt5dequeIS4_SaIS4_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1390' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-229'/>
               <parameter type-id='type-id-47'/>
               <parameter type-id='type-id-51'/>
@@ -7864,7 +7875,7 @@ 
           </member-function>
           <member-function access='private'>
             <function-decl name='RenderQuad' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals10RenderQuadERK14vtkPixelExtentS3_i' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-518' is-artificial='yes'/>
+              <parameter type-id='type-id-519' is-artificial='yes'/>
               <parameter type-id='type-id-45'/>
               <parameter type-id='type-id-45'/>
               <parameter type-id='type-id-17'/>
@@ -7874,7 +7885,7 @@ 
         </class-decl>
       </member-type>
       <member-type access='private'>
-        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-521'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-522'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
           <enumerator name='ENHANCE_CONTRAST_LIC' value='1'/>
@@ -7883,7 +7894,7 @@ 
         </enum-decl>
       </member-type>
       <member-type access='private'>
-        <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-522'>
+        <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-523'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='COMPOSITE_INPLACE' value='0'/>
           <enumerator name='COMPOSITE_INPLACE_DISJOINT' value='1'/>
@@ -7931,7 +7942,7 @@ 
         <var-decl name='MaskIntensity' type-id='type-id-15' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='501' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1792'>
-        <var-decl name='MaskColor' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
+        <var-decl name='MaskColor' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='1984'>
         <var-decl name='ColorMode' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='504' column='1'/>
@@ -7985,18 +7996,18 @@ 
         <var-decl name='Output' type-id='type-id-229' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='523' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='2816'>
-        <var-decl name='Internals' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
+        <var-decl name='Internals' type-id='type-id-519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
       </data-member>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterC1Ev'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-524'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-525'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
@@ -8008,7 +8019,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
@@ -8016,263 +8027,263 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9SetEnableEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9SetEnableEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter11SetStepSizeEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetColorModeEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1823' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-186'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToColorLIC' mangled-name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToComputeLIC' mangled-name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToGatherVectors' mangled-name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToUpdateOutputData' mangled-name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='SetUpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='ClearTCoords' mangled-name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-231'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-231'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-233'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1712' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1671' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1657' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='NeedToRenderGeometry' mangled-name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-520'/>
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-521'/>
+          <parameter type-id='type-id-526'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
@@ -8284,15 +8295,15 @@ 
       </member-function>
       <member-function access='protected'>
         <function-decl name='CanRenderSurfaceLIC' mangled-name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-526'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-30'/>
@@ -8300,20 +8311,20 @@ 
       </member-function>
       <member-function access='protected'>
         <function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-229'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='PrepareOutput' mangled-name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter13PrepareOutputEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='GetBounds' mangled-name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-229'/>
           <parameter type-id='type-id-186'/>
           <return type-id='type-id-30'/>
@@ -8321,64 +8332,64 @@ 
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN20vtkSurfaceLICPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter3NewEv'>
-          <return type-id='type-id-498'/>
+          <return type-id='type-id-499'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-233'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='UpdateNoiseImage' mangled-name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-35'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='InitializeResources' mangled-name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='ValidateContext' mangled-name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-520'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-521'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' destructor='yes' vtable-offset='-1'>
         <function-decl name='~vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterD1Ev'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='0'>
         <function-decl name='GetClassNameInternal' mangled-name='_ZNK20vtkSurfaceLICPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-526' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <return type-id='type-id-64'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='1'>
         <function-decl name='IsA' mangled-name='_ZN20vtkSurfaceLICPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='4'>
         <function-decl name='PrintSelf' mangled-name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-67'/>
           <parameter type-id='type-id-28'/>
           <return type-id='type-id-30'/>
@@ -8386,35 +8397,35 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='14'>
         <function-decl name='ReportReferences' mangled-name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-502'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-503'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='15'>
         <function-decl name='NewInstanceInternal' mangled-name='_ZNK20vtkSurfaceLICPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-526' is-artificial='yes'/>
+          <parameter type-id='type-id-527' is-artificial='yes'/>
           <return type-id='type-id-41'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='25'>
         <function-decl name='ReleaseGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-527'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-528'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='33'>
         <function-decl name='GetOutput' mangled-name='_ZN20vtkSurfaceLICPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetOutputEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-229'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='36'>
         <function-decl name='RenderInternal' mangled-name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-520'/>
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-521'/>
+          <parameter type-id='type-id-526'/>
           <parameter type-id='type-id-4'/>
           <parameter type-id='type-id-1'/>
           <return type-id='type-id-30'/>
@@ -8422,319 +8433,319 @@ 
       </member-function>
       <member-function access='protected' vtable-offset='38'>
         <function-decl name='ProcessInformation' mangled-name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-237'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='40'>
         <function-decl name='GetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9GetEnableEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='41'>
         <function-decl name='GetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='42'>
         <function-decl name='GetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='43'>
         <function-decl name='NormalizeVectorsOn' mangled-name='_ZN20vtkSurfaceLICPainter18NormalizeVectorsOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='44'>
         <function-decl name='NormalizeVectorsOff' mangled-name='_ZN20vtkSurfaceLICPainter19NormalizeVectorsOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='45'>
         <function-decl name='GetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='46'>
         <function-decl name='MaskOnSurfaceOn' mangled-name='_ZN20vtkSurfaceLICPainter15MaskOnSurfaceOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='47'>
         <function-decl name='MaskOnSurfaceOff' mangled-name='_ZN20vtkSurfaceLICPainter16MaskOnSurfaceOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='48'>
         <function-decl name='GetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskOnSurfaceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='49'>
         <function-decl name='GetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='50'>
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-186'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='51'>
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-528'/>
-          <parameter type-id='type-id-528'/>
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-529'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='52'>
         <function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-186'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='53'>
         <function-decl name='GetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='54'>
         <function-decl name='GetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='55'>
         <function-decl name='EnhancedLICOn' mangled-name='_ZN20vtkSurfaceLICPainter13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='56'>
         <function-decl name='EnhancedLICOff' mangled-name='_ZN20vtkSurfaceLICPainter14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='57'>
         <function-decl name='GetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='58'>
         <function-decl name='GetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34GetLowLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='59'>
         <function-decl name='GetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35GetHighLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='60'>
         <function-decl name='GetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36GetLowColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='61'>
         <function-decl name='GetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37GetHighColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='62'>
         <function-decl name='AntiAliasOn' mangled-name='_ZN20vtkSurfaceLICPainter11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='63'>
         <function-decl name='AntiAliasOff' mangled-name='_ZN20vtkSurfaceLICPainter12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='64'>
         <function-decl name='GetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='65'>
         <function-decl name='GetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12GetColorModeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='66'>
         <function-decl name='GetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15GetLICIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='67'>
         <function-decl name='GetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14GetMapModeBiasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='68'>
         <function-decl name='GetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23GetGenerateNoiseTextureEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='69'>
         <function-decl name='GetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12GetNoiseTypeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='70'>
         <function-decl name='GetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19GetNoiseTextureSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='71'>
         <function-decl name='GetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17GetNoiseGrainSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='72'>
         <function-decl name='GetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMinNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='73'>
         <function-decl name='GetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='74'>
         <function-decl name='GetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22GetNumberOfNoiseLevelsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='75'>
         <function-decl name='GetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26GetImpulseNoiseProbabilityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='76'>
         <function-decl name='GetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30GetImpulseNoiseBackgroundValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='365' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='77'>
         <function-decl name='GetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21GetNoiseGeneratorSeedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='78'>
         <function-decl name='GetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20GetCompositeStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='79'>
         <function-decl name='WriteTimerLog' mangled-name='_ZN20vtkSurfaceLICPainter13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='393' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='80'>
         <function-decl name='GetGlobalMinMax' mangled-name='_ZN20vtkSurfaceLICPainter15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
-          <parameter type-id='type-id-320'/>
-          <parameter type-id='type-id-386'/>
-          <parameter type-id='type-id-386'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
+          <parameter type-id='type-id-321'/>
+          <parameter type-id='type-id-387'/>
+          <parameter type-id='type-id-387'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='81'>
         <function-decl name='StartTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='416' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='82'>
         <function-decl name='EndTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='83'>
         <function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <parameter type-id='type-id-17'/>
-          <return type-id='type-id-320'/>
+          <return type-id='type-id-321'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='84'>
         <function-decl name='NeedToUpdateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv'>
-          <parameter type-id='type-id-498' is-artificial='yes'/>
+          <parameter type-id='type-id-499' is-artificial='yes'/>
           <return type-id='type-id-1'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <qualified-type-def type-id='type-id-496' const='yes' id='type-id-529'/>
-    <reference-type-def kind='lvalue' type-id='type-id-529' size-in-bits='64' id='type-id-500'/>
-    <pointer-type-def type-id='type-id-529' size-in-bits='64' id='type-id-501'/>
-    <qualified-type-def type-id='type-id-493' const='yes' id='type-id-530'/>
-    <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-531'/>
-    <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-525'/>
-    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-534'/>
-    <pointer-type-def type-id='type-id-535' size-in-bits='64' id='type-id-536'/>
-    <pointer-type-def type-id='type-id-537' size-in-bits='64' id='type-id-538'/>
-    <pointer-type-def type-id='type-id-497' size-in-bits='64' id='type-id-539'/>
-    <pointer-type-def type-id='type-id-540' size-in-bits='64' id='type-id-541'/>
-    <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-502'/>
-    <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-544'/>
-    <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-545'/>
-    <pointer-type-def type-id='type-id-546' size-in-bits='64' id='type-id-520'/>
-    <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-548'/>
-    <pointer-type-def type-id='type-id-549' size-in-bits='64' id='type-id-550'/>
-    <pointer-type-def type-id='type-id-496' size-in-bits='64' id='type-id-499'/>
-    <pointer-type-def type-id='type-id-503' size-in-bits='64' id='type-id-498'/>
-    <reference-type-def kind='lvalue' type-id='type-id-493' size-in-bits='64' id='type-id-495'/>
-    <pointer-type-def type-id='type-id-493' size-in-bits='64' id='type-id-494'/>
-    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-532'/>
-    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-533'/>
-    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-535'/>
-    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-537'/>
-    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-497'>
+    <qualified-type-def type-id='type-id-497' const='yes' id='type-id-530'/>
+    <reference-type-def kind='lvalue' type-id='type-id-530' size-in-bits='64' id='type-id-501'/>
+    <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-502'/>
+    <qualified-type-def type-id='type-id-494' const='yes' id='type-id-531'/>
+    <pointer-type-def type-id='type-id-531' size-in-bits='64' id='type-id-532'/>
+    <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-526'/>
+    <pointer-type-def type-id='type-id-534' size-in-bits='64' id='type-id-535'/>
+    <pointer-type-def type-id='type-id-536' size-in-bits='64' id='type-id-537'/>
+    <pointer-type-def type-id='type-id-538' size-in-bits='64' id='type-id-539'/>
+    <pointer-type-def type-id='type-id-498' size-in-bits='64' id='type-id-540'/>
+    <pointer-type-def type-id='type-id-541' size-in-bits='64' id='type-id-542'/>
+    <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-503'/>
+    <pointer-type-def type-id='type-id-544' size-in-bits='64' id='type-id-545'/>
+    <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-546'/>
+    <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-521'/>
+    <pointer-type-def type-id='type-id-548' size-in-bits='64' id='type-id-549'/>
+    <pointer-type-def type-id='type-id-550' size-in-bits='64' id='type-id-551'/>
+    <pointer-type-def type-id='type-id-497' size-in-bits='64' id='type-id-500'/>
+    <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-499'/>
+    <reference-type-def kind='lvalue' type-id='type-id-494' size-in-bits='64' id='type-id-496'/>
+    <pointer-type-def type-id='type-id-494' size-in-bits='64' id='type-id-495'/>
+    <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-533'/>
+    <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-534'/>
+    <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-536'/>
+    <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-538'/>
+    <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-498'>
       <member-function access='private' static='yes'>
         <function-decl name='IsTypeOf' mangled-name='_ZN17vtkDefaultPainter8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-64'/>
@@ -8743,59 +8754,59 @@ 
       </member-function>
       <member-function access='private' vtable-offset='22'>
         <function-decl name='GetDelegatePainter' mangled-name='_ZN17vtkDefaultPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-545'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-546'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='40'>
         <function-decl name='GetScalarsToColorsPainter' mangled-name='_ZN17vtkDefaultPainter25GetScalarsToColorsPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-550'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-551'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='41'>
         <function-decl name='GetClipPlanesPainter' mangled-name='_ZN17vtkDefaultPainter20GetClipPlanesPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-534'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-535'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='42'>
         <function-decl name='GetDisplayListPainter' mangled-name='_ZN17vtkDefaultPainter21GetDisplayListPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-541'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-542'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='43'>
         <function-decl name='GetCompositePainter' mangled-name='_ZN17vtkDefaultPainter19GetCompositePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-538'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-539'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='44'>
         <function-decl name='GetCoincidentTopologyResolutionPainter' mangled-name='_ZN17vtkDefaultPainter38GetCoincidentTopologyResolutionPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-536'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-537'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='45'>
         <function-decl name='GetLightingPainter' mangled-name='_ZN17vtkDefaultPainter18GetLightingPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-544'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-545'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='46'>
         <function-decl name='GetRepresentationPainter' mangled-name='_ZN17vtkDefaultPainter24GetRepresentationPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-539' is-artificial='yes'/>
-          <return type-id='type-id-548'/>
+          <parameter type-id='type-id-540' is-artificial='yes'/>
+          <return type-id='type-id-549'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-540'/>
-    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-542'/>
-    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-543'/>
-    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-504'>
+    <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-541'/>
+    <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-543'/>
+    <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-544'/>
+    <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-505'>
       <member-type access='private'>
-        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-551'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-552'>
           <underlying-type type-id='type-id-24'/>
           <enumerator name='VERTS' value='1'/>
           <enumerator name='LINES' value='2'/>
@@ -8811,655 +8822,655 @@ 
       </member-function>
       <member-function access='private' vtable-offset='20'>
         <function-decl name='GetInformation' mangled-name='_ZN10vtkPainter14GetInformationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <return type-id='type-id-237'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='22'>
         <function-decl name='GetDelegatePainter' mangled-name='_ZN10vtkPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
-          <return type-id='type-id-545'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
+          <return type-id='type-id-546'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='26'>
         <function-decl name='SetProgress' mangled-name='_ZN10vtkPainter11SetProgressEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='27'>
         <function-decl name='GetProgressMinValue' mangled-name='_ZN10vtkPainter19GetProgressMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='28'>
         <function-decl name='GetProgressMaxValue' mangled-name='_ZN10vtkPainter19GetProgressMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='29'>
         <function-decl name='GetProgress' mangled-name='_ZN10vtkPainter11GetProgressEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <return type-id='type-id-15'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='32'>
         <function-decl name='GetInput' mangled-name='_ZN10vtkPainter8GetInputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <return type-id='type-id-229'/>
         </function-decl>
       </member-function>
       <member-function access='private' vtable-offset='33'>
         <function-decl name='GetOutput' mangled-name='_ZN10vtkPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <return type-id='type-id-229'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='35'>
         <function-decl name='PrepareForRendering' mangled-name='_ZN10vtkPainter19PrepareForRenderingEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
-          <parameter type-id='type-id-520'/>
-          <parameter type-id='type-id-525'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
+          <parameter type-id='type-id-521'/>
+          <parameter type-id='type-id-526'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' vtable-offset='38'>
         <function-decl name='ProcessInformation' mangled-name='_ZN10vtkPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-545' is-artificial='yes'/>
+          <parameter type-id='type-id-546' is-artificial='yes'/>
           <parameter type-id='type-id-237'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-546'>
+    <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'>
       <member-function access='public'>
         <function-decl name='GetRenderWindow' mangled-name='_ZN11vtkRenderer15GetRenderWindowEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkRenderer.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-520' is-artificial='yes'/>
+          <parameter type-id='type-id-521' is-artificial='yes'/>
           <return type-id='type-id-35'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'/>
-    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-549'/>
+    <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-548'/>
+    <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-550'/>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-523'>
-      <subrange length='3' type-id='type-id-4' id='type-id-552'/>
+    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-524'>
+      <subrange length='3' type-id='type-id-4' id='type-id-553'/>
     </array-type-def>
-    <type-decl name='unsigned char' size-in-bits='8' id='type-id-553'/>
-    <array-type-def dimensions='1' type-id='type-id-554' size-in-bits='512' id='type-id-506'>
-      <subrange length='8' type-id='type-id-4' id='type-id-555'/>
+    <type-decl name='unsigned char' size-in-bits='8' id='type-id-554'/>
+    <array-type-def dimensions='1' type-id='type-id-555' size-in-bits='512' id='type-id-507'>
+      <subrange length='8' type-id='type-id-4' id='type-id-556'/>
     </array-type-def>
-    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-556'/>
-    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-508'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkBackgroundColorMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-509'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-558' is-artificial='yes'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-558' is-artificial='yes'/>
-          <parameter type-id='type-id-559'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-560'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-558' is-artificial='yes'/>
-          <parameter type-id='type-id-559'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
           <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-561' is-artificial='yes'/>
-          <return type-id='type-id-559'/>
+          <parameter type-id='type-id-562' is-artificial='yes'/>
+          <return type-id='type-id-560'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-558' is-artificial='yes'/>
-          <parameter type-id='type-id-559'/>
-          <return type-id='type-id-562'/>
+          <parameter type-id='type-id-559' is-artificial='yes'/>
+          <parameter type-id='type-id-560'/>
+          <return type-id='type-id-563'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-508'/>
+          <return type-id='type-id-509'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkColorMaterialHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-563' is-artificial='yes'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-563' is-artificial='yes'/>
-          <parameter type-id='type-id-564'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
+          <parameter type-id='type-id-565'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-563' is-artificial='yes'/>
-          <parameter type-id='type-id-564'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
+          <parameter type-id='type-id-565'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-565' is-artificial='yes'/>
-          <return type-id='type-id-564'/>
+          <parameter type-id='type-id-566' is-artificial='yes'/>
+          <return type-id='type-id-565'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-563' is-artificial='yes'/>
-          <parameter type-id='type-id-564'/>
-          <return type-id='type-id-566'/>
+          <parameter type-id='type-id-564' is-artificial='yes'/>
+          <parameter type-id='type-id-565'/>
+          <return type-id='type-id-567'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-515'/>
+          <return type-id='type-id-516'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkFrameBufferObject2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-567' is-artificial='yes'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-567' is-artificial='yes'/>
-          <parameter type-id='type-id-318'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
+          <parameter type-id='type-id-319'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-567' is-artificial='yes'/>
-          <parameter type-id='type-id-318'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
+          <parameter type-id='type-id-319'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-567' is-artificial='yes'/>
-          <parameter type-id='type-id-318'/>
-          <return type-id='type-id-568'/>
+          <parameter type-id='type-id-568' is-artificial='yes'/>
+          <parameter type-id='type-id-319'/>
+          <return type-id='type-id-569'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkFrameBufferObject2*' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-569' is-artificial='yes'/>
-          <return type-id='type-id-318'/>
+          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <return type-id='type-id-319'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkImageData&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-233'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-233'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-572' is-artificial='yes'/>
           <return type-id='type-id-233'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-570' is-artificial='yes'/>
+          <parameter type-id='type-id-571' is-artificial='yes'/>
           <parameter type-id='type-id-233'/>
-          <return type-id='type-id-572'/>
+          <return type-id='type-id-573'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkImageData*' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-571' is-artificial='yes'/>
+          <parameter type-id='type-id-572' is-artificial='yes'/>
           <return type-id='type-id-233'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkLightingHelper&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <parameter type-id='type-id-574'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
+          <parameter type-id='type-id-575'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <parameter type-id='type-id-574'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
+          <parameter type-id='type-id-575'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-575' is-artificial='yes'/>
-          <return type-id='type-id-574'/>
+          <parameter type-id='type-id-576' is-artificial='yes'/>
+          <return type-id='type-id-575'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-573' is-artificial='yes'/>
-          <parameter type-id='type-id-574'/>
-          <return type-id='type-id-576'/>
+          <parameter type-id='type-id-574' is-artificial='yes'/>
+          <parameter type-id='type-id-575'/>
+          <return type-id='type-id-577'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-514'/>
+          <return type-id='type-id-515'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkLineIntegralConvolution2D&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-518'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-577' is-artificial='yes'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-577' is-artificial='yes'/>
-          <parameter type-id='type-id-413'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-414'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-577' is-artificial='yes'/>
-          <parameter type-id='type-id-413'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-414'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-577' is-artificial='yes'/>
-          <parameter type-id='type-id-413'/>
-          <return type-id='type-id-578'/>
+          <parameter type-id='type-id-578' is-artificial='yes'/>
+          <parameter type-id='type-id-414'/>
+          <return type-id='type-id-579'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkLineIntegralConvolution2D*' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-579' is-artificial='yes'/>
-          <return type-id='type-id-413'/>
+          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <return type-id='type-id-414'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-554'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLLightMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-555'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-580' is-artificial='yes'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-580' is-artificial='yes'/>
-          <parameter type-id='type-id-581'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-582'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-580' is-artificial='yes'/>
-          <parameter type-id='type-id-581'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-582'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-582' is-artificial='yes'/>
-          <return type-id='type-id-581'/>
+          <parameter type-id='type-id-583' is-artificial='yes'/>
+          <return type-id='type-id-582'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-580' is-artificial='yes'/>
-          <parameter type-id='type-id-581'/>
-          <return type-id='type-id-583'/>
+          <parameter type-id='type-id-581' is-artificial='yes'/>
+          <parameter type-id='type-id-582'/>
+          <return type-id='type-id-584'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-554'/>
+          <return type-id='type-id-555'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-507'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkOpenGLModelViewProjectionMonitor&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-508'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-584' is-artificial='yes'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-584' is-artificial='yes'/>
-          <parameter type-id='type-id-585'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-586'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-584' is-artificial='yes'/>
-          <parameter type-id='type-id-585'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-586'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-586' is-artificial='yes'/>
-          <return type-id='type-id-585'/>
+          <parameter type-id='type-id-587' is-artificial='yes'/>
+          <return type-id='type-id-586'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-584' is-artificial='yes'/>
-          <parameter type-id='type-id-585'/>
-          <return type-id='type-id-587'/>
+          <parameter type-id='type-id-585' is-artificial='yes'/>
+          <parameter type-id='type-id-586'/>
+          <return type-id='type-id-588'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-507'/>
+          <return type-id='type-id-508'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkShaderProgram2&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-588' is-artificial='yes'/>
+          <parameter type-id='type-id-589' is-artificial='yes'/>
           <parameter type-id='type-id-258'/>
-          <return type-id='type-id-589'/>
+          <return type-id='type-id-590'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkShaderProgram2*' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-590' is-artificial='yes'/>
+          <parameter type-id='type-id-591' is-artificial='yes'/>
           <return type-id='type-id-258'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkSurfaceLICComposite&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-591' is-artificial='yes'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-591' is-artificial='yes'/>
-          <parameter type-id='type-id-481'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-482'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-591' is-artificial='yes'/>
-          <parameter type-id='type-id-481'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-482'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-591' is-artificial='yes'/>
-          <parameter type-id='type-id-481'/>
-          <return type-id='type-id-592'/>
+          <parameter type-id='type-id-592' is-artificial='yes'/>
+          <parameter type-id='type-id-482'/>
+          <return type-id='type-id-593'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkSurfaceLICComposite*' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-593' is-artificial='yes'/>
-          <return type-id='type-id-481'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <return type-id='type-id-482'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-593' is-artificial='yes'/>
-          <return type-id='type-id-481'/>
+          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <return type-id='type-id-482'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-510'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkTextureObject&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
+          <parameter type-id='type-id-317'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
-          <parameter type-id='type-id-316'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
+          <parameter type-id='type-id-317'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
-          <parameter type-id='type-id-316'/>
-          <return type-id='type-id-519'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
+          <parameter type-id='type-id-317'/>
+          <return type-id='type-id-520'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkTextureObject*' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-595' is-artificial='yes'/>
-          <return type-id='type-id-316'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-595' is-artificial='yes'/>
-          <return type-id='type-id-316'/>
+          <parameter type-id='type-id-596' is-artificial='yes'/>
+          <return type-id='type-id-317'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-594' is-artificial='yes'/>
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-595' is-artificial='yes'/>
+          <parameter type-id='type-id-317'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-596'>
-      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+    <class-decl name='vtkSmartPointer&lt;vtkTimerLog&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-597'>
+      <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-597' is-artificial='yes'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-597' is-artificial='yes'/>
-          <parameter type-id='type-id-598'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-599'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-597' is-artificial='yes'/>
-          <parameter type-id='type-id-598'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-598' is-artificial='yes'/>
+          <parameter type-id='type-id-599'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='New' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <return type-id='type-id-596'/>
+          <return type-id='type-id-597'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator-&gt;' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-599' is-artificial='yes'/>
-          <return type-id='type-id-598'/>
+          <parameter type-id='type-id-600' is-artificial='yes'/>
+          <return type-id='type-id-599'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-557'>
+    <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-558'>
       <member-type access='protected'>
-        <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-600'/>
+        <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-601'/>
       </member-type>
       <data-member access='protected' layout-offset-in-bits='0'>
         <var-decl name='Object' type-id='type-id-41' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='77' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <parameter type-id='type-id-41'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-601' is-artificial='yes'/>
-          <parameter type-id='type-id-602'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
+          <parameter type-id='type-id-603'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' destructor='yes'>
         <function-decl name='~vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <parameter type-id='type-id-17' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected' constructor='yes'>
         <function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-601' is-artificial='yes'/>
+          <parameter type-id='type-id-602' is-artificial='yes'/>
           <parameter type-id='type-id-41'/>
-          <parameter type-id='type-id-560'/>
+          <parameter type-id='type-id-561'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK19vtkSmartPointerBase10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-603' is-artificial='yes'/>
+          <parameter type-id='type-id-604' is-artificial='yes'/>
           <return type-id='type-id-41'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-509'>
+    <class-decl name='vtkWeakPointer&lt;vtkOpenGLRenderWindow&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-510'>
       <base-class access='public' layout-offset-in-bits='0' type-id='type-id-33'/>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <parameter type-id='type-id-243'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <parameter type-id='type-id-36'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='protected'>
         <function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <parameter type-id='type-id-243'/>
           <parameter type-id='type-id-37'/>
           <return type-id='type-id-30'/>
@@ -9467,47 +9478,47 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-606' is-artificial='yes'/>
           <return type-id='type-id-243'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator vtkOpenGLRenderWindow*' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-605' is-artificial='yes'/>
+          <parameter type-id='type-id-606' is-artificial='yes'/>
           <return type-id='type-id-243'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-604' is-artificial='yes'/>
+          <parameter type-id='type-id-605' is-artificial='yes'/>
           <parameter type-id='type-id-243'/>
-          <return type-id='type-id-606'/>
+          <return type-id='type-id-607'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-607'>
+    <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-608'>
       <data-member access='protected' layout-offset-in-bits='0'>
-        <var-decl name='MinPnt' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MinPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <data-member access='protected' layout-offset-in-bits='192'>
-        <var-decl name='MaxPnt' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+        <var-decl name='MaxPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
       </data-member>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-608' is-artificial='yes'/>
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
+          <parameter type-id='type-id-610'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
           <parameter type-id='type-id-15'/>
@@ -9519,198 +9530,204 @@ 
       </member-function>
       <member-function access='private' constructor='yes'>
         <function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-608' is-artificial='yes'/>
-          <parameter type-id='type-id-610'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
+          <parameter type-id='type-id-611'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsERdS0_S0_S0_S0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-611' is-artificial='yes'/>
-          <parameter type-id='type-id-528'/>
-          <parameter type-id='type-id-528'/>
-          <parameter type-id='type-id-528'/>
-          <parameter type-id='type-id-528'/>
-          <parameter type-id='type-id-528'/>
-          <parameter type-id='type-id-528'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-529'/>
+          <parameter type-id='type-id-529'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='Reset' mangled-name='_ZN14vtkBoundingBox5ResetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-608' is-artificial='yes'/>
+          <parameter type-id='type-id-609' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-611' is-artificial='yes'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
           <parameter type-id='type-id-186'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMinPoint' mangled-name='_ZNK14vtkBoundingBox11GetMinPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-611' is-artificial='yes'/>
-          <return type-id='type-id-609'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <return type-id='type-id-610'/>
         </function-decl>
       </member-function>
       <member-function access='private'>
         <function-decl name='GetMaxPoint' mangled-name='_ZNK14vtkBoundingBox11GetMaxPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-611' is-artificial='yes'/>
-          <return type-id='type-id-609'/>
+          <parameter type-id='type-id-612' is-artificial='yes'/>
+          <return type-id='type-id-610'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='IsValid' mangled-name='_ZN14vtkBoundingBox7IsValidEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-610'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-56'/>
-    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-612'/>
-    <reference-type-def kind='lvalue' type-id='type-id-612' size-in-bits='64' id='type-id-613'/>
-    <pointer-type-def type-id='type-id-612' size-in-bits='64' id='type-id-609'/>
-    <qualified-type-def type-id='type-id-614' const='yes' id='type-id-615'/>
-    <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-616'/>
-    <qualified-type-def type-id='type-id-617' const='yes' id='type-id-618'/>
-    <reference-type-def kind='lvalue' type-id='type-id-618' size-in-bits='64' id='type-id-619'/>
-    <pointer-type-def type-id='type-id-618' size-in-bits='64' id='type-id-620'/>
-    <qualified-type-def type-id='type-id-607' const='yes' id='type-id-621'/>
-    <reference-type-def kind='lvalue' type-id='type-id-621' size-in-bits='64' id='type-id-610'/>
-    <pointer-type-def type-id='type-id-621' size-in-bits='64' id='type-id-611'/>
-    <qualified-type-def type-id='type-id-228' const='yes' id='type-id-622'/>
-    <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-264'/>
-    <qualified-type-def type-id='type-id-508' const='yes' id='type-id-623'/>
-    <pointer-type-def type-id='type-id-623' size-in-bits='64' id='type-id-561'/>
-    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-624'/>
-    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-565'/>
-    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-625'/>
-    <pointer-type-def type-id='type-id-625' size-in-bits='64' id='type-id-569'/>
-    <qualified-type-def type-id='type-id-511' const='yes' id='type-id-626'/>
-    <pointer-type-def type-id='type-id-626' size-in-bits='64' id='type-id-571'/>
-    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-627'/>
-    <pointer-type-def type-id='type-id-627' size-in-bits='64' id='type-id-575'/>
-    <qualified-type-def type-id='type-id-517' const='yes' id='type-id-628'/>
-    <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-579'/>
-    <qualified-type-def type-id='type-id-554' const='yes' id='type-id-629'/>
-    <pointer-type-def type-id='type-id-629' size-in-bits='64' id='type-id-582'/>
-    <qualified-type-def type-id='type-id-507' const='yes' id='type-id-630'/>
-    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-586'/>
-    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-631'/>
-    <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-590'/>
-    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-632'/>
-    <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-593'/>
-    <qualified-type-def type-id='type-id-510' const='yes' id='type-id-633'/>
-    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-595'/>
-    <qualified-type-def type-id='type-id-596' const='yes' id='type-id-634'/>
-    <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-599'/>
-    <qualified-type-def type-id='type-id-557' const='yes' id='type-id-635'/>
-    <reference-type-def kind='lvalue' type-id='type-id-635' size-in-bits='64' id='type-id-602'/>
-    <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-603'/>
-    <qualified-type-def type-id='type-id-600' const='yes' id='type-id-636'/>
-    <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-560'/>
-    <qualified-type-def type-id='type-id-503' const='yes' id='type-id-637'/>
-    <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-524'/>
-    <pointer-type-def type-id='type-id-637' size-in-bits='64' id='type-id-526'/>
-    <qualified-type-def type-id='type-id-638' const='yes' id='type-id-639'/>
-    <reference-type-def kind='lvalue' type-id='type-id-639' size-in-bits='64' id='type-id-640'/>
-    <qualified-type-def type-id='type-id-509' const='yes' id='type-id-641'/>
-    <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-605'/>
-    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-528'/>
-    <pointer-type-def type-id='type-id-614' size-in-bits='64' id='type-id-642'/>
-    <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-644'/>
-    <reference-type-def kind='lvalue' type-id='type-id-617' size-in-bits='64' id='type-id-645'/>
-    <pointer-type-def type-id='type-id-617' size-in-bits='64' id='type-id-646'/>
-    <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-647'/>
-    <reference-type-def kind='lvalue' type-id='type-id-648' size-in-bits='64' id='type-id-649'/>
-    <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-559'/>
-    <reference-type-def kind='lvalue' type-id='type-id-607' size-in-bits='64' id='type-id-650'/>
-    <pointer-type-def type-id='type-id-607' size-in-bits='64' id='type-id-608'/>
-    <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-265'/>
-    <reference-type-def kind='lvalue' type-id='type-id-652' size-in-bits='64' id='type-id-653'/>
-    <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-564'/>
-    <pointer-type-def type-id='type-id-654' size-in-bits='64' id='type-id-655'/>
-    <pointer-type-def type-id='type-id-656' size-in-bits='64' id='type-id-657'/>
-    <reference-type-def kind='lvalue' type-id='type-id-412' size-in-bits='64' id='type-id-658'/>
-    <reference-type-def kind='lvalue' type-id='type-id-232' size-in-bits='64' id='type-id-659'/>
-    <reference-type-def kind='lvalue' type-id='type-id-660' size-in-bits='64' id='type-id-661'/>
-    <pointer-type-def type-id='type-id-660' size-in-bits='64' id='type-id-574'/>
-    <reference-type-def kind='lvalue' type-id='type-id-381' size-in-bits='64' id='type-id-662'/>
-    <pointer-type-def type-id='type-id-663' size-in-bits='64' id='type-id-664'/>
-    <reference-type-def kind='lvalue' type-id='type-id-665' size-in-bits='64' id='type-id-666'/>
-    <pointer-type-def type-id='type-id-665' size-in-bits='64' id='type-id-581'/>
-    <reference-type-def kind='lvalue' type-id='type-id-667' size-in-bits='64' id='type-id-668'/>
-    <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-585'/>
-    <reference-type-def kind='lvalue' type-id='type-id-242' size-in-bits='64' id='type-id-669'/>
-    <pointer-type-def type-id='type-id-670' size-in-bits='64' id='type-id-671'/>
-    <reference-type-def kind='lvalue' type-id='type-id-257' size-in-bits='64' id='type-id-672'/>
-    <reference-type-def kind='lvalue' type-id='type-id-508' size-in-bits='64' id='type-id-562'/>
-    <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-558'/>
-    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-566'/>
-    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-563'/>
-    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-568'/>
-    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-567'/>
-    <reference-type-def kind='lvalue' type-id='type-id-511' size-in-bits='64' id='type-id-572'/>
-    <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-570'/>
-    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-576'/>
-    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-573'/>
-    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-578'/>
-    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-577'/>
-    <reference-type-def kind='lvalue' type-id='type-id-554' size-in-bits='64' id='type-id-583'/>
-    <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-580'/>
-    <reference-type-def kind='lvalue' type-id='type-id-507' size-in-bits='64' id='type-id-587'/>
-    <pointer-type-def type-id='type-id-507' size-in-bits='64' id='type-id-584'/>
-    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-589'/>
-    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-588'/>
-    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-592'/>
-    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-591'/>
-    <reference-type-def kind='lvalue' type-id='type-id-510' size-in-bits='64' id='type-id-519'/>
-    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-594'/>
-    <reference-type-def kind='lvalue' type-id='type-id-596' size-in-bits='64' id='type-id-673'/>
-    <pointer-type-def type-id='type-id-596' size-in-bits='64' id='type-id-597'/>
-    <reference-type-def kind='lvalue' type-id='type-id-557' size-in-bits='64' id='type-id-674'/>
-    <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-601'/>
-    <reference-type-def kind='lvalue' type-id='type-id-476' size-in-bits='64' id='type-id-675'/>
-    <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-518'/>
-    <pointer-type-def type-id='type-id-676' size-in-bits='64' id='type-id-677'/>
-    <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-678'/>
-    <reference-type-def kind='lvalue' type-id='type-id-270' size-in-bits='64' id='type-id-679'/>
-    <reference-type-def kind='lvalue' type-id='type-id-680' size-in-bits='64' id='type-id-681'/>
-    <pointer-type-def type-id='type-id-680' size-in-bits='64' id='type-id-598'/>
-    <pointer-type-def type-id='type-id-682' size-in-bits='64' id='type-id-683'/>
-    <reference-type-def kind='lvalue' type-id='type-id-509' size-in-bits='64' id='type-id-606'/>
-    <pointer-type-def type-id='type-id-509' size-in-bits='64' id='type-id-604'/>
-    <pointer-type-def type-id='type-id-684' size-in-bits='64' id='type-id-527'/>
-    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-648'/>
-    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-651'/>
-    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-652'/>
-    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-654'>
+    <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-56'/>
+    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-613'/>
+    <reference-type-def kind='lvalue' type-id='type-id-613' size-in-bits='64' id='type-id-614'/>
+    <pointer-type-def type-id='type-id-613' size-in-bits='64' id='type-id-610'/>
+    <qualified-type-def type-id='type-id-615' const='yes' id='type-id-616'/>
+    <pointer-type-def type-id='type-id-616' size-in-bits='64' id='type-id-617'/>
+    <qualified-type-def type-id='type-id-618' const='yes' id='type-id-619'/>
+    <reference-type-def kind='lvalue' type-id='type-id-619' size-in-bits='64' id='type-id-620'/>
+    <pointer-type-def type-id='type-id-619' size-in-bits='64' id='type-id-621'/>
+    <qualified-type-def type-id='type-id-608' const='yes' id='type-id-622'/>
+    <reference-type-def kind='lvalue' type-id='type-id-622' size-in-bits='64' id='type-id-611'/>
+    <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-612'/>
+    <qualified-type-def type-id='type-id-228' const='yes' id='type-id-623'/>
+    <pointer-type-def type-id='type-id-623' size-in-bits='64' id='type-id-264'/>
+    <qualified-type-def type-id='type-id-509' const='yes' id='type-id-624'/>
+    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-562'/>
+    <qualified-type-def type-id='type-id-516' const='yes' id='type-id-625'/>
+    <pointer-type-def type-id='type-id-625' size-in-bits='64' id='type-id-566'/>
+    <qualified-type-def type-id='type-id-513' const='yes' id='type-id-626'/>
+    <pointer-type-def type-id='type-id-626' size-in-bits='64' id='type-id-570'/>
+    <qualified-type-def type-id='type-id-512' const='yes' id='type-id-627'/>
+    <pointer-type-def type-id='type-id-627' size-in-bits='64' id='type-id-572'/>
+    <qualified-type-def type-id='type-id-515' const='yes' id='type-id-628'/>
+    <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-576'/>
+    <qualified-type-def type-id='type-id-518' const='yes' id='type-id-629'/>
+    <pointer-type-def type-id='type-id-629' size-in-bits='64' id='type-id-580'/>
+    <qualified-type-def type-id='type-id-555' const='yes' id='type-id-630'/>
+    <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-583'/>
+    <qualified-type-def type-id='type-id-508' const='yes' id='type-id-631'/>
+    <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-587'/>
+    <qualified-type-def type-id='type-id-514' const='yes' id='type-id-632'/>
+    <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-591'/>
+    <qualified-type-def type-id='type-id-517' const='yes' id='type-id-633'/>
+    <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-594'/>
+    <qualified-type-def type-id='type-id-511' const='yes' id='type-id-634'/>
+    <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-596'/>
+    <qualified-type-def type-id='type-id-597' const='yes' id='type-id-635'/>
+    <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-600'/>
+    <qualified-type-def type-id='type-id-558' const='yes' id='type-id-636'/>
+    <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-603'/>
+    <pointer-type-def type-id='type-id-636' size-in-bits='64' id='type-id-604'/>
+    <qualified-type-def type-id='type-id-601' const='yes' id='type-id-637'/>
+    <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-561'/>
+    <qualified-type-def type-id='type-id-504' const='yes' id='type-id-638'/>
+    <reference-type-def kind='lvalue' type-id='type-id-638' size-in-bits='64' id='type-id-525'/>
+    <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-527'/>
+    <qualified-type-def type-id='type-id-639' const='yes' id='type-id-640'/>
+    <reference-type-def kind='lvalue' type-id='type-id-640' size-in-bits='64' id='type-id-641'/>
+    <qualified-type-def type-id='type-id-510' const='yes' id='type-id-642'/>
+    <pointer-type-def type-id='type-id-642' size-in-bits='64' id='type-id-606'/>
+    <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-529'/>
+    <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-643'/>
+    <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-645'/>
+    <reference-type-def kind='lvalue' type-id='type-id-618' size-in-bits='64' id='type-id-646'/>
+    <pointer-type-def type-id='type-id-618' size-in-bits='64' id='type-id-647'/>
+    <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-648'/>
+    <reference-type-def kind='lvalue' type-id='type-id-649' size-in-bits='64' id='type-id-650'/>
+    <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-560'/>
+    <reference-type-def kind='lvalue' type-id='type-id-608' size-in-bits='64' id='type-id-651'/>
+    <pointer-type-def type-id='type-id-608' size-in-bits='64' id='type-id-609'/>
+    <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-265'/>
+    <reference-type-def kind='lvalue' type-id='type-id-653' size-in-bits='64' id='type-id-654'/>
+    <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-565'/>
+    <pointer-type-def type-id='type-id-655' size-in-bits='64' id='type-id-656'/>
+    <pointer-type-def type-id='type-id-657' size-in-bits='64' id='type-id-658'/>
+    <reference-type-def kind='lvalue' type-id='type-id-413' size-in-bits='64' id='type-id-659'/>
+    <reference-type-def kind='lvalue' type-id='type-id-232' size-in-bits='64' id='type-id-660'/>
+    <reference-type-def kind='lvalue' type-id='type-id-661' size-in-bits='64' id='type-id-662'/>
+    <pointer-type-def type-id='type-id-661' size-in-bits='64' id='type-id-575'/>
+    <reference-type-def kind='lvalue' type-id='type-id-382' size-in-bits='64' id='type-id-663'/>
+    <pointer-type-def type-id='type-id-664' size-in-bits='64' id='type-id-665'/>
+    <reference-type-def kind='lvalue' type-id='type-id-666' size-in-bits='64' id='type-id-667'/>
+    <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-582'/>
+    <reference-type-def kind='lvalue' type-id='type-id-668' size-in-bits='64' id='type-id-669'/>
+    <pointer-type-def type-id='type-id-668' size-in-bits='64' id='type-id-586'/>
+    <reference-type-def kind='lvalue' type-id='type-id-242' size-in-bits='64' id='type-id-670'/>
+    <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-672'/>
+    <reference-type-def kind='lvalue' type-id='type-id-257' size-in-bits='64' id='type-id-673'/>
+    <reference-type-def kind='lvalue' type-id='type-id-509' size-in-bits='64' id='type-id-563'/>
+    <pointer-type-def type-id='type-id-509' size-in-bits='64' id='type-id-559'/>
+    <reference-type-def kind='lvalue' type-id='type-id-516' size-in-bits='64' id='type-id-567'/>
+    <pointer-type-def type-id='type-id-516' size-in-bits='64' id='type-id-564'/>
+    <reference-type-def kind='lvalue' type-id='type-id-513' size-in-bits='64' id='type-id-569'/>
+    <pointer-type-def type-id='type-id-513' size-in-bits='64' id='type-id-568'/>
+    <reference-type-def kind='lvalue' type-id='type-id-512' size-in-bits='64' id='type-id-573'/>
+    <pointer-type-def type-id='type-id-512' size-in-bits='64' id='type-id-571'/>
+    <reference-type-def kind='lvalue' type-id='type-id-515' size-in-bits='64' id='type-id-577'/>
+    <pointer-type-def type-id='type-id-515' size-in-bits='64' id='type-id-574'/>
+    <reference-type-def kind='lvalue' type-id='type-id-518' size-in-bits='64' id='type-id-579'/>
+    <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-578'/>
+    <reference-type-def kind='lvalue' type-id='type-id-555' size-in-bits='64' id='type-id-584'/>
+    <pointer-type-def type-id='type-id-555' size-in-bits='64' id='type-id-581'/>
+    <reference-type-def kind='lvalue' type-id='type-id-508' size-in-bits='64' id='type-id-588'/>
+    <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-585'/>
+    <reference-type-def kind='lvalue' type-id='type-id-514' size-in-bits='64' id='type-id-590'/>
+    <pointer-type-def type-id='type-id-514' size-in-bits='64' id='type-id-589'/>
+    <reference-type-def kind='lvalue' type-id='type-id-517' size-in-bits='64' id='type-id-593'/>
+    <pointer-type-def type-id='type-id-517' size-in-bits='64' id='type-id-592'/>
+    <reference-type-def kind='lvalue' type-id='type-id-511' size-in-bits='64' id='type-id-520'/>
+    <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-595'/>
+    <reference-type-def kind='lvalue' type-id='type-id-597' size-in-bits='64' id='type-id-674'/>
+    <pointer-type-def type-id='type-id-597' size-in-bits='64' id='type-id-598'/>
+    <reference-type-def kind='lvalue' type-id='type-id-558' size-in-bits='64' id='type-id-675'/>
+    <pointer-type-def type-id='type-id-558' size-in-bits='64' id='type-id-602'/>
+    <reference-type-def kind='lvalue' type-id='type-id-477' size-in-bits='64' id='type-id-676'/>
+    <pointer-type-def type-id='type-id-506' size-in-bits='64' id='type-id-519'/>
+    <pointer-type-def type-id='type-id-677' size-in-bits='64' id='type-id-678'/>
+    <pointer-type-def type-id='type-id-639' size-in-bits='64' id='type-id-679'/>
+    <reference-type-def kind='lvalue' type-id='type-id-270' size-in-bits='64' id='type-id-680'/>
+    <reference-type-def kind='lvalue' type-id='type-id-681' size-in-bits='64' id='type-id-682'/>
+    <pointer-type-def type-id='type-id-681' size-in-bits='64' id='type-id-599'/>
+    <pointer-type-def type-id='type-id-683' size-in-bits='64' id='type-id-684'/>
+    <reference-type-def kind='lvalue' type-id='type-id-510' size-in-bits='64' id='type-id-607'/>
+    <pointer-type-def type-id='type-id-510' size-in-bits='64' id='type-id-605'/>
+    <pointer-type-def type-id='type-id-685' size-in-bits='64' id='type-id-528'/>
+    <class-decl name='vtkBackgroundColorMonitor' visibility='default' is-declaration-only='yes' id='type-id-649'/>
+    <class-decl name='vtkCellData' visibility='default' is-declaration-only='yes' id='type-id-652'/>
+    <class-decl name='vtkColorMaterialHelper' visibility='default' is-declaration-only='yes' id='type-id-653'/>
+    <class-decl name='vtkCompositeDataSet' visibility='default' is-declaration-only='yes' id='type-id-655'>
       <member-function access='private' static='yes'>
         <function-decl name='SafeDownCast' mangled-name='_ZN19vtkCompositeDataSet12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkCompositeDataSet.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-41'/>
-          <return type-id='type-id-655'/>
+          <return type-id='type-id-656'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-656'>
+    <class-decl name='vtkFieldData' visibility='default' is-declaration-only='yes' id='type-id-657'>
       <member-function access='private'>
         <function-decl name='GetNumberOfArrays' mangled-name='_ZN12vtkFieldData17GetNumberOfArraysEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkFieldData.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-657' is-artificial='yes'/>
+          <parameter type-id='type-id-658' is-artificial='yes'/>
           <return type-id='type-id-17'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-660'>
+    <class-decl name='vtkLightingHelper' visibility='default' is-declaration-only='yes' id='type-id-661'>
+      <member-type access='private'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='42' column='1' id='type-id-686'>
+          <underlying-type type-id='type-id-24'/>
+          <enumerator name='VTK_MAX_LIGHTS' value='8'/>
+        </enum-decl>
+      </member-type>
       <member-function access='private'>
         <function-decl name='EncodeLightState' mangled-name='_ZN17vtkLightingHelper16EncodeLightStateEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkLightingHelper.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-574' is-artificial='yes'/>
+          <parameter type-id='type-id-575' is-artificial='yes'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-685'>
+    <class-decl name='vtkMath' visibility='default' is-declaration-only='yes' id='type-id-687'>
       <member-function access='private' static='yes'>
         <function-decl name='UninitializeBounds' mangled-name='_ZN7vtkMath18UninitializeBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkMath.h' line='849' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-186'/>
@@ -9718,26 +9735,26 @@ 
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-663'/>
-    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-665'/>
-    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-667'/>
-    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-670'>
+    <class-decl name='vtkMinimalStandardRandomSequence' visibility='default' is-declaration-only='yes' id='type-id-664'/>
+    <class-decl name='vtkOpenGLLightMonitor' visibility='default' is-declaration-only='yes' id='type-id-666'/>
+    <class-decl name='vtkOpenGLModelViewProjectionMonitor' visibility='default' is-declaration-only='yes' id='type-id-668'/>
+    <class-decl name='vtkScalarsToColors' visibility='default' is-declaration-only='yes' id='type-id-671'>
       <member-function access='private' static='yes'>
         <function-decl name='SafeDownCast' mangled-name='_ZN18vtkScalarsToColors12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkScalarsToColors.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-41'/>
-          <return type-id='type-id-671'/>
+          <return type-id='type-id-672'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-680'>
+    <class-decl name='vtkTimerLog' visibility='default' is-declaration-only='yes' id='type-id-681'>
       <data-member access='protected' static='yes'>
         <var-decl name='Logging' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/System/vtkTimerLog.h' line='169' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-682'>
+    <class-decl name='vtkUniformVariables' visibility='default' is-declaration-only='yes' id='type-id-683'>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-47'/>
@@ -9746,7 +9763,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-186'/>
@@ -9755,7 +9772,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-55'/>
@@ -9764,7 +9781,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKciPT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-17'/>
           <parameter type-id='type-id-47'/>
@@ -9773,7 +9790,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
@@ -9781,7 +9798,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;double&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIdEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-15'/>
           <return type-id='type-id-30'/>
@@ -9789,7 +9806,7 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformft&lt;float&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformftIfEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-16'/>
           <return type-id='type-id-30'/>
@@ -9797,18 +9814,18 @@ 
       </member-function>
       <member-function access='private'>
         <function-decl name='SetUniformit&lt;int&gt;' mangled-name='_ZN19vtkUniformVariables12SetUniformitIiEEvPKcT_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkUniformVariables.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-683' is-artificial='yes'/>
+          <parameter type-id='type-id-684' is-artificial='yes'/>
           <parameter type-id='type-id-64'/>
           <parameter type-id='type-id-17'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-684'/>
+    <class-decl name='vtkWindow' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-685'/>
     <namespace-decl name='std'>
-      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-614'>
+      <class-decl name='_Vector_base&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-615'>
         <member-type access='public'>
-          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-643'>
+          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-644'>
             <base-class access='public' layout-offset-in-bits='0' type-id='type-id-149'/>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='_M_start' type-id='type-id-44' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
@@ -9821,13 +9838,13 @@ 
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-644' is-artificial='yes'/>
+                <parameter type-id='type-id-645' is-artificial='yes'/>
                 <return type-id='type-id-30'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-644' is-artificial='yes'/>
+                <parameter type-id='type-id-645' is-artificial='yes'/>
                 <parameter type-id='type-id-151'/>
                 <return type-id='type-id-30'/>
               </function-decl>
@@ -9835,24 +9852,24 @@ 
           </class-decl>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_impl' type-id='type-id-643' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-644' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <parameter type-id='type-id-151'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-151'/>
             <return type-id='type-id-30'/>
@@ -9860,51 +9877,51 @@ 
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-44'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <return type-id='type-id-202'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseI14vtkPixelExtentSaIS0_EE13_M_deallocateEPS0_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-642' is-artificial='yes'/>
+            <parameter type-id='type-id-643' is-artificial='yes'/>
             <parameter type-id='type-id-44'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-617'>
-        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-614'/>
+      <class-decl name='vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt;' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-618'>
+        <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-615'/>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <parameter type-id='type-id-151'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-45'/>
             <parameter type-id='type-id-151'/>
@@ -9913,39 +9930,39 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
-            <parameter type-id='type-id-619'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
+            <parameter type-id='type-id-620'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_range_initialize&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-288'/>
+            <parameter type-id='type-id-289'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_dispatch&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-133'/>
-            <parameter type-id='type-id-287'/>
+            <parameter type-id='type-id-288'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='vector&lt;std::_Deque_iterator&lt;vtkPixelExtent, vtkPixelExtent&amp;, vtkPixelExtent*&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-133'/>
             <parameter type-id='type-id-151'/>
@@ -9954,27 +9971,27 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='size' mangled-name='_ZNKSt6vectorI14vtkPixelExtentSaIS0_EE4sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-620' is-artificial='yes'/>
+            <parameter type-id='type-id-621' is-artificial='yes'/>
             <return type-id='type-id-50'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator[]' mangled-name='_ZNSt6vectorI14vtkPixelExtentSaIS0_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-646' is-artificial='yes'/>
+            <parameter type-id='type-id-647' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-51'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-686'/>
-      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-687'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-688'/>
+      <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-689'/>
       <function-decl name='operator==&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='2265' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-368'/>
+        <parameter type-id='type-id-369'/>
         <parameter type-id='type-id-64'/>
         <return type-id='type-id-1'/>
       </function-decl>
       <function-decl name='operator!=&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='2302' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-368'/>
+        <parameter type-id='type-id-369'/>
         <parameter type-id='type-id-64'/>
         <return type-id='type-id-1'/>
       </function-decl>
@@ -9999,47 +10016,47 @@ 
       </function-decl>
     </namespace-decl>
     <namespace-decl name='vtkSurfaceLICPainterUtil'>
-      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-638'>
+      <class-decl name='RandomNumberGeneratorInterface' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='246' column='1' id='type-id-639'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='RNG' type-id='type-id-664' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
+          <var-decl name='RNG' type-id='type-id-665' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='289' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='RandomNumberGeneratorInterface' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-678' is-artificial='yes'/>
-            <parameter type-id='type-id-640'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
+            <parameter type-id='type-id-641'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='SetSeed' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface7SetSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <parameter type-id='type-id-17' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='GetRandomNumber' mangled-name='_ZN24vtkSurfaceLICPainterUtil30RandomNumberGeneratorInterface15GetRandomNumberEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='273' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-678' is-artificial='yes'/>
+            <parameter type-id='type-id-679' is-artificial='yes'/>
             <return type-id='type-id-15'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-676'>
+      <class-decl name='RandomNoise2D' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='299' column='1' id='type-id-677'>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-688'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='319' column='1' id='type-id-690'>
             <underlying-type type-id='type-id-24'/>
             <enumerator name='UNIFORM' value='0'/>
             <enumerator name='GAUSSIAN' value='1'/>
@@ -10047,20 +10064,20 @@ 
           </enum-decl>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='ValueGen' type-id='type-id-638' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
+          <var-decl name='ValueGen' type-id='type-id-639' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='390' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='ProbGen' type-id='type-id-638' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
+          <var-decl name='ProbGen' type-id='type-id-639' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='391' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='RandomNoise2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <return type-id='type-id-30'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='GetValidDimensionAndGrainSize' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D29GetValidDimensionAndGrainSizeEiRiS1_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='387' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-52'/>
             <parameter type-id='type-id-52'/>
@@ -10069,14 +10086,14 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='ShouldGenerateValue' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D19ShouldGenerateValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <parameter type-id='type-id-15'/>
             <return type-id='type-id-17'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='GenerateGaussian' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D16GenerateGaussianEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-16'/>
@@ -10090,7 +10107,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='GeneratePerlin' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D14GeneratePerlinEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-16'/>
@@ -10104,7 +10121,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='GenerateUniform' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D15GenerateUniformEiiffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='342' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-16'/>
@@ -10118,7 +10135,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='Generate' mangled-name='_ZN24vtkSurfaceLICPainterUtil13RandomNoise2D8GenerateEiRiS1_ffidfi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-677' is-artificial='yes'/>
+            <parameter type-id='type-id-678' is-artificial='yes'/>
             <parameter type-id='type-id-17'/>
             <parameter type-id='type-id-52'/>
             <parameter type-id='type-id-52'/>
@@ -10134,8 +10151,8 @@ 
       </class-decl>
       <function-decl name='vtkClamp' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-15'/>
-        <parameter type-id='type-id-613'/>
-        <parameter type-id='type-id-613'/>
+        <parameter type-id='type-id-614'/>
+        <parameter type-id='type-id-614'/>
         <return type-id='type-id-15'/>
       </function-decl>
       <function-decl name='ilog2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10144,27 +10161,27 @@ 
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-689'/>
-      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-690'/>
+      <class-decl name='__normal_iterator&lt;const vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-691'/>
+      <class-decl name='__normal_iterator&lt;vtkPixelExtent*, std::vector&lt;vtkPixelExtent, std::allocator&lt;vtkPixelExtent&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-692'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
-    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-691'>
+    <class-decl name='vtkTextureIO' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='33' column='1' id='type-id-693'>
       <member-function access='private' static='yes'>
         <function-decl name='Write' mangled-name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd'>
           <parameter type-id='type-id-64'/>
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <parameter type-id='type-id-166'/>
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-610'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
       <member-function access='private' static='yes'>
         <function-decl name='Write' mangled-name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd'>
           <parameter type-id='type-id-64'/>
-          <parameter type-id='type-id-316'/>
+          <parameter type-id='type-id-317'/>
           <parameter type-id='type-id-54'/>
-          <parameter type-id='type-id-609'/>
+          <parameter type-id='type-id-610'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </member-function>
diff --git a/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi b/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
index da5bb27f..4af0970a 100644
--- a/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
+++ b/tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
@@ -16777,6 +16777,12 @@ 
         </member-function>
       </class-decl>
       <class-decl name='ThreadCache' size-in-bits='17408' visibility='default' filepath='src/thread_cache.h' line='66' column='1' id='type-id-1417'>
+        <member-type access='private'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='src/thread_cache.h' line='69' column='1' id='type-id-1510'>
+            <underlying-type type-id='type-id-240'/>
+            <enumerator name='have_tls' value='1'/>
+          </enum-decl>
+        </member-type>
         <member-type access='private'>
           <class-decl name='FreeList' size-in-bits='192' visibility='default' filepath='src/thread_cache.h' line='132' column='1' id='type-id-1260'>
             <data-member access='private' layout-offset-in-bits='0'>
@@ -16884,7 +16890,7 @@ 
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='ThreadLocalData' size-in-bits='128' is-struct='yes' visibility='default' filepath='src/thread_cache.h' line='262' column='1' id='type-id-1510'>
+          <class-decl name='ThreadLocalData' size-in-bits='128' is-struct='yes' visibility='default' filepath='src/thread_cache.h' line='262' column='1' id='type-id-1511'>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='heap' type-id='type-id-1468' visibility='default' filepath='src/thread_cache.h' line='263' column='1'/>
             </data-member>
@@ -16900,7 +16906,7 @@ 
           <var-decl name='prev_' type-id='type-id-1468' visibility='default' filepath='src/thread_cache.h' line='76' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='threadlocal_data_' type-id='type-id-1510' mangled-name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' visibility='default' filepath='src/thread_cache.h' line='272' column='1' elf-symbol-id='_ZN8tcmalloc11ThreadCache17threadlocal_data_E'/>
+          <var-decl name='threadlocal_data_' type-id='type-id-1511' mangled-name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' visibility='default' filepath='src/thread_cache.h' line='272' column='1' elf-symbol-id='_ZN8tcmalloc11ThreadCache17threadlocal_data_E'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='tsd_inited_' type-id='type-id-56' mangled-name='_ZN8tcmalloc11ThreadCache11tsd_inited_E' visibility='default' filepath='src/thread_cache.h' line='280' column='1' elf-symbol-id='_ZN8tcmalloc11ThreadCache11tsd_inited_E'/>
diff --git a/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi b/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
index 46952f55..9f21e26a 100644
--- a/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
+++ b/tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
@@ -14006,8 +14006,14 @@ 
             </member-function>
           </class-decl>
         </member-type>
+        <member-type access='protected'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='513' column='1' id='type-id-1024'>
+            <underlying-type type-id='type-id-37'/>
+            <enumerator name='_S_local_word_size' value='8'/>
+          </enum-decl>
+        </member-type>
         <member-type access='private'>
-          <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='535' column='1' id='type-id-1024'>
+          <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='535' column='1' id='type-id-1025'>
             <data-member access='private' static='yes'>
               <var-decl name='_S_refcount' type-id='type-id-594' mangled-name='_ZNSt8ios_base4Init11_S_refcountE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='543' column='1'/>
             </data-member>
@@ -14016,26 +14022,26 @@ 
             </data-member>
             <member-function access='private' constructor='yes'>
               <function-decl name='Init' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1025' is-artificial='yes'/>
+                <parameter type-id='type-id-1026' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~Init' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='540' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1025' is-artificial='yes'/>
+                <parameter type-id='type-id-1026' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='Init' mangled-name='_ZNSt8ios_base4InitC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base4InitC2Ev@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-1025' is-artificial='yes'/>
+                <parameter type-id='type-id-1026' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~Init' mangled-name='_ZNSt8ios_base4InitD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base4InitD2Ev@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-1025' is-artificial='yes'/>
+                <parameter type-id='type-id-1026' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
@@ -14043,97 +14049,97 @@ 
           </class-decl>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='boolalpha' type-id='type-id-1026' mangled-name='_ZNSt8ios_base9boolalphaE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='260' column='1' elf-symbol-id='_ZNSt8ios_base9boolalphaE@@GLIBCXX_3.4'/>
+          <var-decl name='boolalpha' type-id='type-id-1027' mangled-name='_ZNSt8ios_base9boolalphaE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='260' column='1' elf-symbol-id='_ZNSt8ios_base9boolalphaE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='dec' type-id='type-id-1026' mangled-name='_ZNSt8ios_base3decE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='263' column='1' elf-symbol-id='_ZNSt8ios_base3decE@@GLIBCXX_3.4'/>
+          <var-decl name='dec' type-id='type-id-1027' mangled-name='_ZNSt8ios_base3decE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='263' column='1' elf-symbol-id='_ZNSt8ios_base3decE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='fixed' type-id='type-id-1026' mangled-name='_ZNSt8ios_base5fixedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='266' column='1' elf-symbol-id='_ZNSt8ios_base5fixedE@@GLIBCXX_3.4'/>
+          <var-decl name='fixed' type-id='type-id-1027' mangled-name='_ZNSt8ios_base5fixedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='266' column='1' elf-symbol-id='_ZNSt8ios_base5fixedE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='hex' type-id='type-id-1026' mangled-name='_ZNSt8ios_base3hexE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='269' column='1' elf-symbol-id='_ZNSt8ios_base3hexE@@GLIBCXX_3.4'/>
+          <var-decl name='hex' type-id='type-id-1027' mangled-name='_ZNSt8ios_base3hexE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='269' column='1' elf-symbol-id='_ZNSt8ios_base3hexE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='internal' type-id='type-id-1026' mangled-name='_ZNSt8ios_base8internalE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='274' column='1' elf-symbol-id='_ZNSt8ios_base8internalE@@GLIBCXX_3.4'/>
+          <var-decl name='internal' type-id='type-id-1027' mangled-name='_ZNSt8ios_base8internalE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='274' column='1' elf-symbol-id='_ZNSt8ios_base8internalE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='left' type-id='type-id-1026' mangled-name='_ZNSt8ios_base4leftE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='278' column='1' elf-symbol-id='_ZNSt8ios_base4leftE@@GLIBCXX_3.4'/>
+          <var-decl name='left' type-id='type-id-1027' mangled-name='_ZNSt8ios_base4leftE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='278' column='1' elf-symbol-id='_ZNSt8ios_base4leftE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='oct' type-id='type-id-1026' mangled-name='_ZNSt8ios_base3octE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='281' column='1' elf-symbol-id='_ZNSt8ios_base3octE@@GLIBCXX_3.4'/>
+          <var-decl name='oct' type-id='type-id-1027' mangled-name='_ZNSt8ios_base3octE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='281' column='1' elf-symbol-id='_ZNSt8ios_base3octE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='right' type-id='type-id-1026' mangled-name='_ZNSt8ios_base5rightE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='285' column='1' elf-symbol-id='_ZNSt8ios_base5rightE@@GLIBCXX_3.4'/>
+          <var-decl name='right' type-id='type-id-1027' mangled-name='_ZNSt8ios_base5rightE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='285' column='1' elf-symbol-id='_ZNSt8ios_base5rightE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='scientific' type-id='type-id-1026' mangled-name='_ZNSt8ios_base10scientificE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='288' column='1' elf-symbol-id='_ZNSt8ios_base10scientificE@@GLIBCXX_3.4'/>
+          <var-decl name='scientific' type-id='type-id-1027' mangled-name='_ZNSt8ios_base10scientificE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='288' column='1' elf-symbol-id='_ZNSt8ios_base10scientificE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='showbase' type-id='type-id-1026' mangled-name='_ZNSt8ios_base8showbaseE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='292' column='1' elf-symbol-id='_ZNSt8ios_base8showbaseE@@GLIBCXX_3.4'/>
+          <var-decl name='showbase' type-id='type-id-1027' mangled-name='_ZNSt8ios_base8showbaseE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='292' column='1' elf-symbol-id='_ZNSt8ios_base8showbaseE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='showpoint' type-id='type-id-1026' mangled-name='_ZNSt8ios_base9showpointE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='296' column='1' elf-symbol-id='_ZNSt8ios_base9showpointE@@GLIBCXX_3.4'/>
+          <var-decl name='showpoint' type-id='type-id-1027' mangled-name='_ZNSt8ios_base9showpointE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='296' column='1' elf-symbol-id='_ZNSt8ios_base9showpointE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='showpos' type-id='type-id-1026' mangled-name='_ZNSt8ios_base7showposE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='299' column='1' elf-symbol-id='_ZNSt8ios_base7showposE@@GLIBCXX_3.4'/>
+          <var-decl name='showpos' type-id='type-id-1027' mangled-name='_ZNSt8ios_base7showposE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='299' column='1' elf-symbol-id='_ZNSt8ios_base7showposE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='skipws' type-id='type-id-1026' mangled-name='_ZNSt8ios_base6skipwsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='302' column='1' elf-symbol-id='_ZNSt8ios_base6skipwsE@@GLIBCXX_3.4'/>
+          <var-decl name='skipws' type-id='type-id-1027' mangled-name='_ZNSt8ios_base6skipwsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='302' column='1' elf-symbol-id='_ZNSt8ios_base6skipwsE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='unitbuf' type-id='type-id-1026' mangled-name='_ZNSt8ios_base7unitbufE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='305' column='1' elf-symbol-id='_ZNSt8ios_base7unitbufE@@GLIBCXX_3.4'/>
+          <var-decl name='unitbuf' type-id='type-id-1027' mangled-name='_ZNSt8ios_base7unitbufE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='305' column='1' elf-symbol-id='_ZNSt8ios_base7unitbufE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='uppercase' type-id='type-id-1026' mangled-name='_ZNSt8ios_base9uppercaseE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='309' column='1' elf-symbol-id='_ZNSt8ios_base9uppercaseE@@GLIBCXX_3.4'/>
+          <var-decl name='uppercase' type-id='type-id-1027' mangled-name='_ZNSt8ios_base9uppercaseE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='309' column='1' elf-symbol-id='_ZNSt8ios_base9uppercaseE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='adjustfield' type-id='type-id-1026' mangled-name='_ZNSt8ios_base11adjustfieldE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='312' column='1' elf-symbol-id='_ZNSt8ios_base11adjustfieldE@@GLIBCXX_3.4'/>
+          <var-decl name='adjustfield' type-id='type-id-1027' mangled-name='_ZNSt8ios_base11adjustfieldE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='312' column='1' elf-symbol-id='_ZNSt8ios_base11adjustfieldE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='basefield' type-id='type-id-1026' mangled-name='_ZNSt8ios_base9basefieldE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='315' column='1' elf-symbol-id='_ZNSt8ios_base9basefieldE@@GLIBCXX_3.4'/>
+          <var-decl name='basefield' type-id='type-id-1027' mangled-name='_ZNSt8ios_base9basefieldE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='315' column='1' elf-symbol-id='_ZNSt8ios_base9basefieldE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='floatfield' type-id='type-id-1026' mangled-name='_ZNSt8ios_base10floatfieldE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='318' column='1' elf-symbol-id='_ZNSt8ios_base10floatfieldE@@GLIBCXX_3.4'/>
+          <var-decl name='floatfield' type-id='type-id-1027' mangled-name='_ZNSt8ios_base10floatfieldE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='318' column='1' elf-symbol-id='_ZNSt8ios_base10floatfieldE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='badbit' type-id='type-id-1027' mangled-name='_ZNSt8ios_base6badbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='336' column='1' elf-symbol-id='_ZNSt8ios_base6badbitE@@GLIBCXX_3.4'/>
+          <var-decl name='badbit' type-id='type-id-1028' mangled-name='_ZNSt8ios_base6badbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='336' column='1' elf-symbol-id='_ZNSt8ios_base6badbitE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='eofbit' type-id='type-id-1027' mangled-name='_ZNSt8ios_base6eofbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='339' column='1' elf-symbol-id='_ZNSt8ios_base6eofbitE@@GLIBCXX_3.4'/>
+          <var-decl name='eofbit' type-id='type-id-1028' mangled-name='_ZNSt8ios_base6eofbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='339' column='1' elf-symbol-id='_ZNSt8ios_base6eofbitE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='failbit' type-id='type-id-1027' mangled-name='_ZNSt8ios_base7failbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='344' column='1' elf-symbol-id='_ZNSt8ios_base7failbitE@@GLIBCXX_3.4'/>
+          <var-decl name='failbit' type-id='type-id-1028' mangled-name='_ZNSt8ios_base7failbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='344' column='1' elf-symbol-id='_ZNSt8ios_base7failbitE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='goodbit' type-id='type-id-1027' mangled-name='_ZNSt8ios_base7goodbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='347' column='1' elf-symbol-id='_ZNSt8ios_base7goodbitE@@GLIBCXX_3.4'/>
+          <var-decl name='goodbit' type-id='type-id-1028' mangled-name='_ZNSt8ios_base7goodbitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='347' column='1' elf-symbol-id='_ZNSt8ios_base7goodbitE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='app' type-id='type-id-1028' mangled-name='_ZNSt8ios_base3appE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='366' column='1' elf-symbol-id='_ZNSt8ios_base3appE@@GLIBCXX_3.4'/>
+          <var-decl name='app' type-id='type-id-1029' mangled-name='_ZNSt8ios_base3appE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='366' column='1' elf-symbol-id='_ZNSt8ios_base3appE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='ate' type-id='type-id-1028' mangled-name='_ZNSt8ios_base3ateE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='369' column='1' elf-symbol-id='_ZNSt8ios_base3ateE@@GLIBCXX_3.4'/>
+          <var-decl name='ate' type-id='type-id-1029' mangled-name='_ZNSt8ios_base3ateE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='369' column='1' elf-symbol-id='_ZNSt8ios_base3ateE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='in' type-id='type-id-1028' mangled-name='_ZNSt8ios_base2inE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='377' column='1' elf-symbol-id='_ZNSt8ios_base2inE@@GLIBCXX_3.4'/>
+          <var-decl name='in' type-id='type-id-1029' mangled-name='_ZNSt8ios_base2inE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='377' column='1' elf-symbol-id='_ZNSt8ios_base2inE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='out' type-id='type-id-1028' mangled-name='_ZNSt8ios_base3outE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='380' column='1' elf-symbol-id='_ZNSt8ios_base3outE@@GLIBCXX_3.4'/>
+          <var-decl name='out' type-id='type-id-1029' mangled-name='_ZNSt8ios_base3outE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='380' column='1' elf-symbol-id='_ZNSt8ios_base3outE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='cur' type-id='type-id-1029' mangled-name='_ZNSt8ios_base3curE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='401' column='1' elf-symbol-id='_ZNSt8ios_base3curE@@GLIBCXX_3.4'/>
+          <var-decl name='cur' type-id='type-id-1030' mangled-name='_ZNSt8ios_base3curE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='401' column='1' elf-symbol-id='_ZNSt8ios_base3curE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='end' type-id='type-id-1029' mangled-name='_ZNSt8ios_base3endE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='404' column='1' elf-symbol-id='_ZNSt8ios_base3endE@@GLIBCXX_3.4'/>
+          <var-decl name='end' type-id='type-id-1030' mangled-name='_ZNSt8ios_base3endE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='404' column='1' elf-symbol-id='_ZNSt8ios_base3endE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='binary' type-id='type-id-1028' mangled-name='_ZNSt8ios_base6binaryE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='374' column='1' elf-symbol-id='_ZNSt8ios_base6binaryE@@GLIBCXX_3.4'/>
+          <var-decl name='binary' type-id='type-id-1029' mangled-name='_ZNSt8ios_base6binaryE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='374' column='1' elf-symbol-id='_ZNSt8ios_base6binaryE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='trunc' type-id='type-id-1028' mangled-name='_ZNSt8ios_base5truncE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='383' column='1' elf-symbol-id='_ZNSt8ios_base5truncE@@GLIBCXX_3.4'/>
+          <var-decl name='trunc' type-id='type-id-1029' mangled-name='_ZNSt8ios_base5truncE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='383' column='1' elf-symbol-id='_ZNSt8ios_base5truncE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='beg' type-id='type-id-1029' mangled-name='_ZNSt8ios_base3begE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='398' column='1' elf-symbol-id='_ZNSt8ios_base3begE@@GLIBCXX_3.4'/>
+          <var-decl name='beg' type-id='type-id-1030' mangled-name='_ZNSt8ios_base3begE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='398' column='1' elf-symbol-id='_ZNSt8ios_base3begE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='64'>
           <var-decl name='_M_precision' type-id='type-id-897' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='454' column='1'/>
@@ -14157,7 +14163,7 @@ 
           <var-decl name='_M_word_zero' type-id='type-id-1022' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='509' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='512'>
-          <var-decl name='_M_local_word' type-id='type-id-1030' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='514' column='1'/>
+          <var-decl name='_M_local_word' type-id='type-id-1031' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='514' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='1536'>
           <var-decl name='_M_word_size' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='517' column='1'/>
@@ -14170,52 +14176,52 @@ 
         </data-member>
         <member-function access='private' const='yes'>
           <function-decl name='flags' mangled-name='_ZNKSt8ios_base5flagsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='553' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1031' is-artificial='yes'/>
+            <parameter type-id='type-id-1032' is-artificial='yes'/>
             <return type-id='type-id-1015'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='flags' mangled-name='_ZNSt8ios_base5flagsESt13_Ios_Fmtflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='564' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-1015'/>
             <return type-id='type-id-1015'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='precision' mangled-name='_ZNKSt8ios_base9precisionEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='623' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1031' is-artificial='yes'/>
+            <parameter type-id='type-id-1032' is-artificial='yes'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='precision' mangled-name='_ZNSt8ios_base9precisionEl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='getloc' mangled-name='_ZNKSt8ios_base6getlocEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='697' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1031' is-artificial='yes'/>
+            <parameter type-id='type-id-1032' is-artificial='yes'/>
             <return type-id='type-id-996'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='ios_base' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='ios_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='788' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
-            <parameter type-id='type-id-1033'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
+            <parameter type-id='type-id-1034'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='ios_base' mangled-name='_ZNSt8ios_baseC2Ev' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_baseC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -14226,7 +14232,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='register_callback' mangled-name='_ZNSt8ios_base17register_callbackEPFvNS_5eventERS_iEi' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base17register_callbackEPFvNS_5eventERS_iEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-1018'/>
             <parameter type-id='type-id-6'/>
             <return type-id='type-id-5'/>
@@ -14234,28 +14240,28 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_grow_words' mangled-name='_ZNSt8ios_base13_M_grow_wordsEib' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base13_M_grow_wordsEib@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-1034'/>
+            <return type-id='type-id-1035'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_call_callbacks' mangled-name='_ZNSt8ios_base17_M_call_callbacksENS_5eventE' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base17_M_call_callbacksENS_5eventE@@GLIBCXX_3.4.6'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-1017'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_dispose_callbacks' mangled-name='_ZNSt8ios_base20_M_dispose_callbacksEv' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base20_M_dispose_callbacksEv@@GLIBCXX_3.4.6'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='setf' mangled-name='_ZNSt8ios_base4setfESt13_Ios_Fmtflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='580' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-1015'/>
             <return type-id='type-id-1015'/>
           </function-decl>
@@ -14268,33 +14274,33 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_init' mangled-name='_ZNSt8ios_base7_M_initEv' filepath='../../../.././libstdc++-v3/src/c++98/ios_locale.cc' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base7_M_initEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='imbue' mangled-name='_ZNSt8ios_base5imbueERKSt6locale' filepath='../../../.././libstdc++-v3/src/c++98/ios_locale.cc' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_base5imbueERKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-996'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='width' mangled-name='_ZNKSt8ios_base5widthEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='646' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1031' is-artificial='yes'/>
+            <parameter type-id='type-id-1032' is-artificial='yes'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='width' mangled-name='_ZNSt8ios_base5widthEl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='655' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='setf' mangled-name='_ZNSt8ios_base4setfESt13_Ios_FmtflagsS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='597' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-1015'/>
             <parameter type-id='type-id-1015'/>
             <return type-id='type-id-1015'/>
@@ -14302,27 +14308,27 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_getloc' mangled-name='_ZNKSt8ios_base9_M_getlocEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='708' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1031' is-artificial='yes'/>
+            <parameter type-id='type-id-1032' is-artificial='yes'/>
             <return type-id='type-id-965'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ios_base' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ios_base' mangled-name='_ZNSt8ios_baseD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_baseD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ios_base' mangled-name='_ZNSt8ios_baseD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/ios.cc' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8ios_baseD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1032' is-artificial='yes'/>
+            <parameter type-id='type-id-1033' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -14385,42 +14391,42 @@ 
       <class-decl name='basic_istream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='56' column='1' is-declaration-only='yes' id='type-id-796'>
         <base-class access='public' layout-offset-in-bits='192' is-virtual='yes' type-id='type-id-706'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='60' column='1' id='type-id-1035'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='60' column='1' id='type-id-1036'/>
         </member-type>
         <member-type access='private'>
           <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='61' column='1' id='type-id-712'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='62' column='1' id='type-id-1036'/>
+          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='62' column='1' id='type-id-1037'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='63' column='1' id='type-id-1037'/>
+          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='63' column='1' id='type-id-1038'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='67' column='1' id='type-id-1038'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='67' column='1' id='type-id-1039'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ios_type' type-id='type-id-706' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='68' column='1' id='type-id-1039'/>
+          <typedef-decl name='__ios_type' type-id='type-id-706' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='68' column='1' id='type-id-1040'/>
         </member-type>
         <member-type access='private'>
           <typedef-decl name='__istream_type' type-id='type-id-796' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='69' column='1' id='type-id-799'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__num_get_type' type-id='type-id-990' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='71' column='1' id='type-id-1040'/>
+          <typedef-decl name='__num_get_type' type-id='type-id-990' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='71' column='1' id='type-id-1041'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ctype_type' type-id='type-id-986' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='72' column='1' id='type-id-1041'/>
+          <typedef-decl name='__ctype_type' type-id='type-id-986' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='72' column='1' id='type-id-1042'/>
         </member-type>
         <member-type access='private'>
           <class-decl name='sentry' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='655' column='1' id='type-id-714'>
             <member-type access='private'>
-              <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='663' column='1' id='type-id-1042'/>
+              <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='663' column='1' id='type-id-1043'/>
             </member-type>
             <member-type access='private'>
-              <typedef-decl name='__ctype_type' type-id='type-id-1041' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='665' column='1' id='type-id-1043'/>
+              <typedef-decl name='__ctype_type' type-id='type-id-1042' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='665' column='1' id='type-id-1044'/>
             </member-type>
             <member-type access='private'>
-              <typedef-decl name='__int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='666' column='1' id='type-id-1044'/>
+              <typedef-decl name='__int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='666' column='1' id='type-id-1045'/>
             </member-type>
             <data-member access='private' layout-offset-in-bits='0'>
               <var-decl name='_M_ok' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='658' column='1'/>
@@ -14468,21 +14474,21 @@ 
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='212' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERf@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1045'/>
+            <parameter type-id='type-id-1046'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='216' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERd@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1046'/>
+            <parameter type-id='type-id-1047'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERe@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1047'/>
+            <parameter type-id='type-id-1048'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
@@ -14491,16 +14497,16 @@ 
             <parameter type-id='type-id-798' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-1048'/>
+            <parameter type-id='type-id-1049'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='getline' mangled-name='_ZNSi7getlineEPclc' filepath='../../../.././libstdc++-v3/src/c++98/istream.cc' line='38' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi7getlineEPclc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1049'/>
+            <parameter type-id='type-id-1050'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-1035'/>
+            <parameter type-id='type-id-1036'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
@@ -14525,7 +14531,7 @@ 
             <parameter type-id='type-id-798' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-1048'/>
+            <parameter type-id='type-id-1049'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -14534,41 +14540,41 @@ 
             <parameter type-id='type-id-798' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-1048'/>
+            <parameter type-id='type-id-1049'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsEPFRSiS_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsEPFRSiS_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1050'/>
+            <parameter type-id='type-id-1051'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1051'/>
+            <parameter type-id='type-id-1052'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsEPFRSt8ios_baseS0_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsEPFRSt8ios_baseS0_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1052'/>
+            <parameter type-id='type-id-1053'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='gcount' mangled-name='_ZNKSi6gcountEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSi6gcountEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1053' is-artificial='yes'/>
+            <parameter type-id='type-id-1054' is-artificial='yes'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='getline' mangled-name='_ZNSi7getlineEPcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='425' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi7getlineEPcl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1049'/>
+            <parameter type-id='type-id-1050'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-800'/>
           </function-decl>
@@ -14592,7 +14598,7 @@ 
         <member-function access='private'>
           <function-decl name='tellg' mangled-name='_ZNSi5tellgEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi5tellgEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <return type-id='type-id-1036'/>
+            <return type-id='type-id-1037'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -14610,14 +14616,14 @@ 
         <member-function access='private'>
           <function-decl name='putback' mangled-name='_ZNSi7putbackEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi7putbackEc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1035'/>
+            <parameter type-id='type-id-1036'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='readsome' mangled-name='_ZNSi8readsomeEPcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='503' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi8readsomeEPcl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1049'/>
+            <parameter type-id='type-id-1050'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
@@ -14625,7 +14631,7 @@ 
         <member-function access='private'>
           <function-decl name='read' mangled-name='_ZNSi4readEPcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi4readEPcl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1049'/>
+            <parameter type-id='type-id-1050'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-800'/>
           </function-decl>
@@ -14639,31 +14645,31 @@ 
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEEc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1054'/>
-            <parameter type-id='type-id-1035'/>
+            <parameter type-id='type-id-1055'/>
+            <parameter type-id='type-id-1036'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEE@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1054'/>
+            <parameter type-id='type-id-1055'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSi3getEPclc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi3getEPclc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1049'/>
+            <parameter type-id='type-id-1050'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-1035'/>
+            <parameter type-id='type-id-1036'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSi3getEPcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='352' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi3getEPcl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1049'/>
+            <parameter type-id='type-id-1050'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-800'/>
           </function-decl>
@@ -14671,7 +14677,7 @@ 
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSi3getERc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi3getERc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1055'/>
+            <parameter type-id='type-id-1056'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
@@ -14684,28 +14690,28 @@ 
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsEPSt15basic_streambufIcSt11char_traitsIcEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='257' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsEPSt15basic_streambufIcSt11char_traitsIcEE@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1048'/>
+            <parameter type-id='type-id-1049'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERi@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERs@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1057'/>
+            <parameter type-id='type-id-1058'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='seekg' mangled-name='_ZNSi5seekgElSt12_Ios_Seekdir' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='600' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi5seekgElSt12_Ios_Seekdir@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1037'/>
+            <parameter type-id='type-id-1038'/>
             <parameter type-id='type-id-964'/>
             <return type-id='type-id-800'/>
           </function-decl>
@@ -14713,140 +14719,140 @@ 
         <member-function access='private'>
           <function-decl name='seekg' mangled-name='_ZNSi5seekgESt4fposI11__mbstate_tE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi5seekgESt4fposI11__mbstate_tE@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1036'/>
+            <parameter type-id='type-id-1037'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;short unsigned int&gt;' mangled-name='_ZNSi10_M_extractItEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractItEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1058'/>
+            <parameter type-id='type-id-1059'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERt@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1058'/>
+            <parameter type-id='type-id-1059'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;unsigned int&gt;' mangled-name='_ZNSi10_M_extractIjEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIjEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1059'/>
+            <parameter type-id='type-id-1060'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERj@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1059'/>
+            <parameter type-id='type-id-1060'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long int&gt;' mangled-name='_ZNSi10_M_extractIlEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIlEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1060'/>
+            <parameter type-id='type-id-1061'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1060'/>
+            <parameter type-id='type-id-1061'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long unsigned int&gt;' mangled-name='_ZNSi10_M_extractImEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractImEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1061'/>
+            <parameter type-id='type-id-1062'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERm@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1061'/>
+            <parameter type-id='type-id-1062'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;bool&gt;' mangled-name='_ZNSi10_M_extractIbEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIbEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1062'/>
+            <parameter type-id='type-id-1063'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERb@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1062'/>
+            <parameter type-id='type-id-1063'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long long int&gt;' mangled-name='_ZNSi10_M_extractIxEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIxEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1063'/>
+            <parameter type-id='type-id-1064'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERx@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1063'/>
+            <parameter type-id='type-id-1064'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long long unsigned int&gt;' mangled-name='_ZNSi10_M_extractIyEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIyEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1064'/>
+            <parameter type-id='type-id-1065'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERy@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1064'/>
+            <parameter type-id='type-id-1065'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;float&gt;' mangled-name='_ZNSi10_M_extractIfEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIfEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1045'/>
+            <parameter type-id='type-id-1046'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;double&gt;' mangled-name='_ZNSi10_M_extractIdEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIdEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1046'/>
+            <parameter type-id='type-id-1047'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long double&gt;' mangled-name='_ZNSi10_M_extractIeEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIeEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1047'/>
+            <parameter type-id='type-id-1048'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;void*&gt;' mangled-name='_ZNSi10_M_extractIPvEERSiRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSi10_M_extractIPvEERSiRT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1065'/>
+            <parameter type-id='type-id-1066'/>
             <return type-id='type-id-797'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSirsERPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSirsERPv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-798' is-artificial='yes'/>
-            <parameter type-id='type-id-1065'/>
+            <parameter type-id='type-id-1066'/>
             <return type-id='type-id-800'/>
           </function-decl>
         </member-function>
@@ -14886,42 +14892,42 @@ 
       <class-decl name='basic_istream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='56' column='1' is-declaration-only='yes' id='type-id-802'>
         <base-class access='public' layout-offset-in-bits='192' is-virtual='yes' type-id='type-id-709'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='60' column='1' id='type-id-1066'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='60' column='1' id='type-id-1067'/>
         </member-type>
         <member-type access='private'>
           <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='61' column='1' id='type-id-717'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='62' column='1' id='type-id-1067'/>
+          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='62' column='1' id='type-id-1068'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='63' column='1' id='type-id-1068'/>
+          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='63' column='1' id='type-id-1069'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='67' column='1' id='type-id-1069'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='67' column='1' id='type-id-1070'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ios_type' type-id='type-id-709' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='68' column='1' id='type-id-1070'/>
+          <typedef-decl name='__ios_type' type-id='type-id-709' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='68' column='1' id='type-id-1071'/>
         </member-type>
         <member-type access='private'>
           <typedef-decl name='__istream_type' type-id='type-id-802' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='69' column='1' id='type-id-805'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__num_get_type' type-id='type-id-1005' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='71' column='1' id='type-id-1071'/>
+          <typedef-decl name='__num_get_type' type-id='type-id-1005' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='71' column='1' id='type-id-1072'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ctype_type' type-id='type-id-1001' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='72' column='1' id='type-id-1072'/>
+          <typedef-decl name='__ctype_type' type-id='type-id-1001' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='72' column='1' id='type-id-1073'/>
         </member-type>
         <member-type access='private'>
           <class-decl name='sentry' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='655' column='1' id='type-id-719'>
             <member-type access='private'>
-              <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='663' column='1' id='type-id-1073'/>
+              <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='663' column='1' id='type-id-1074'/>
             </member-type>
             <member-type access='private'>
-              <typedef-decl name='__ctype_type' type-id='type-id-1072' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='665' column='1' id='type-id-1074'/>
+              <typedef-decl name='__ctype_type' type-id='type-id-1073' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='665' column='1' id='type-id-1075'/>
             </member-type>
             <member-type access='private'>
-              <typedef-decl name='__int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='666' column='1' id='type-id-1075'/>
+              <typedef-decl name='__int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='666' column='1' id='type-id-1076'/>
             </member-type>
             <data-member access='private' layout-offset-in-bits='0'>
               <var-decl name='_M_ok' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='658' column='1'/>
@@ -14969,21 +14975,21 @@ 
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='212' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERf@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1045'/>
+            <parameter type-id='type-id-1046'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='216' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERd@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1046'/>
+            <parameter type-id='type-id-1047'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERe@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1047'/>
+            <parameter type-id='type-id-1048'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
@@ -14992,16 +14998,16 @@ 
             <parameter type-id='type-id-804' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-1076'/>
+            <parameter type-id='type-id-1077'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='getline' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwlw' filepath='../../../.././libstdc++-v3/src/c++98/istream.cc' line='443' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwlw@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1077'/>
+            <parameter type-id='type-id-1078'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-1066'/>
+            <parameter type-id='type-id-1067'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
@@ -15026,7 +15032,7 @@ 
             <parameter type-id='type-id-804' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-1076'/>
+            <parameter type-id='type-id-1077'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -15035,41 +15041,41 @@ 
             <parameter type-id='type-id-804' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-1076'/>
+            <parameter type-id='type-id-1077'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRS2_S3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRS2_S3_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1078'/>
+            <parameter type-id='type-id-1079'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt9basic_iosIwS1_ES5_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt9basic_iosIwS1_ES5_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1079'/>
+            <parameter type-id='type-id-1080'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt8ios_baseS4_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt8ios_baseS4_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1052'/>
+            <parameter type-id='type-id-1053'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='gcount' mangled-name='_ZNKSt13basic_istreamIwSt11char_traitsIwEE6gcountEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt13basic_istreamIwSt11char_traitsIwEE6gcountEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1080' is-artificial='yes'/>
+            <parameter type-id='type-id-1081' is-artificial='yes'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='getline' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='425' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1077'/>
+            <parameter type-id='type-id-1078'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-806'/>
           </function-decl>
@@ -15093,7 +15099,7 @@ 
         <member-function access='private'>
           <function-decl name='tellg' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5tellgEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE5tellgEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <return type-id='type-id-1067'/>
+            <return type-id='type-id-1068'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -15111,14 +15117,14 @@ 
         <member-function access='private'>
           <function-decl name='putback' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7putbackEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE7putbackEw@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1066'/>
+            <parameter type-id='type-id-1067'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='readsome' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE8readsomeEPwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='503' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE8readsomeEPwl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1077'/>
+            <parameter type-id='type-id-1078'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
@@ -15126,7 +15132,7 @@ 
         <member-function access='private'>
           <function-decl name='read' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE4readEPwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE4readEPwl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1077'/>
+            <parameter type-id='type-id-1078'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-806'/>
           </function-decl>
@@ -15140,31 +15146,31 @@ 
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_Ew' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_Ew@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1081'/>
-            <parameter type-id='type-id-1066'/>
+            <parameter type-id='type-id-1082'/>
+            <parameter type-id='type-id-1067'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1081'/>
+            <parameter type-id='type-id-1082'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwlw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwlw@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1077'/>
+            <parameter type-id='type-id-1078'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-1066'/>
+            <parameter type-id='type-id-1067'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='352' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1077'/>
+            <parameter type-id='type-id-1078'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-806'/>
           </function-decl>
@@ -15172,7 +15178,7 @@ 
         <member-function access='private'>
           <function-decl name='get' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERw@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1082'/>
+            <parameter type-id='type-id-1083'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
@@ -15185,28 +15191,28 @@ 
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPSt15basic_streambufIwS1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='257' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPSt15basic_streambufIwS1_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1076'/>
+            <parameter type-id='type-id-1077'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERi@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERs@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1057'/>
+            <parameter type-id='type-id-1058'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='seekg' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgElSt12_Ios_Seekdir' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='600' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgElSt12_Ios_Seekdir@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1068'/>
+            <parameter type-id='type-id-1069'/>
             <parameter type-id='type-id-964'/>
             <return type-id='type-id-806'/>
           </function-decl>
@@ -15214,140 +15220,140 @@ 
         <member-function access='private'>
           <function-decl name='seekg' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgESt4fposI11__mbstate_tE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgESt4fposI11__mbstate_tE@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1067'/>
+            <parameter type-id='type-id-1068'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;short unsigned int&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractItEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractItEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1058'/>
+            <parameter type-id='type-id-1059'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERt@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1058'/>
+            <parameter type-id='type-id-1059'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;unsigned int&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIjEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIjEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1059'/>
+            <parameter type-id='type-id-1060'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERj@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1059'/>
+            <parameter type-id='type-id-1060'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long int&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIlEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIlEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1060'/>
+            <parameter type-id='type-id-1061'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1060'/>
+            <parameter type-id='type-id-1061'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long unsigned int&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractImEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractImEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1061'/>
+            <parameter type-id='type-id-1062'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERm@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1061'/>
+            <parameter type-id='type-id-1062'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;bool&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIbEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIbEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1062'/>
+            <parameter type-id='type-id-1063'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERb@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1062'/>
+            <parameter type-id='type-id-1063'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long long int&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIxEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIxEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1063'/>
+            <parameter type-id='type-id-1064'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERx@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1063'/>
+            <parameter type-id='type-id-1064'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long long unsigned int&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIyEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIyEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1064'/>
+            <parameter type-id='type-id-1065'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERy@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1064'/>
+            <parameter type-id='type-id-1065'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;float&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIfEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIfEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1045'/>
+            <parameter type-id='type-id-1046'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;double&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIdEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIdEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1046'/>
+            <parameter type-id='type-id-1047'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;long double&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIeEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIeEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1047'/>
+            <parameter type-id='type-id-1048'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_extract&lt;void*&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIPvEERS2_RT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/istream.tcc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIPvEERS2_RT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1065'/>
+            <parameter type-id='type-id-1066'/>
             <return type-id='type-id-803'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&gt;&gt;' mangled-name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERPv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-804' is-artificial='yes'/>
-            <parameter type-id='type-id-1065'/>
+            <parameter type-id='type-id-1066'/>
             <return type-id='type-id-806'/>
           </function-decl>
         </member-function>
@@ -15389,16 +15395,16 @@ 
           <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='126' column='1' id='type-id-809'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='128' column='1' id='type-id-1083'/>
+          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='128' column='1' id='type-id-1084'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='129' column='1' id='type-id-1084'/>
+          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='129' column='1' id='type-id-1085'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='130' column='1' id='type-id-1085'/>
+          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='130' column='1' id='type-id-1086'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='135' column='1' id='type-id-1086'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='135' column='1' id='type-id-1087'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='64'>
           <var-decl name='_M_in_beg' type-id='type-id-810' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='181' column='1'/>
@@ -15450,19 +15456,19 @@ 
         <member-function access='private'>
           <function-decl name='sbumpc' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6sbumpcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE6sbumpcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='sgetc' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='snextc' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6snextcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE6snextcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
@@ -15529,7 +15535,7 @@ 
         <member-function access='private'>
           <function-decl name='sputn' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputnEPKcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputnEPKcl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1087'/>
+            <parameter type-id='type-id-1088'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
@@ -15538,7 +15544,7 @@ 
           <function-decl name='sputc' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputcEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputcEc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
             <parameter type-id='type-id-809'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -15557,10 +15563,10 @@ 
         <member-function access='private'>
           <function-decl name='pubseekoff' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1085'/>
+            <parameter type-id='type-id-1086'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1084'/>
+            <return type-id='type-id-1085'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -15572,7 +15578,7 @@ 
         <member-function access='private'>
           <function-decl name='sungetc' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7sungetcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE7sungetcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -15592,22 +15598,22 @@ 
         <member-function access='private'>
           <function-decl name='pubseekpos' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1084'/>
+            <parameter type-id='type-id-1085'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1084'/>
+            <return type-id='type-id-1085'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='sputbackc' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9sputbackcEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='369' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE9sputbackcEc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
             <parameter type-id='type-id-809'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_streambuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='799' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1088'/>
+            <parameter type-id='type-id-1089'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -15616,7 +15622,7 @@ 
             <parameter type-id='type-id-808' is-artificial='yes'/>
             <parameter type-id='type-id-810'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-1089'/>
+            <return type-id='type-id-1090'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
@@ -15634,15 +15640,15 @@ 
         <member-function access='private'>
           <function-decl name='basic_streambuf' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC2ERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='799' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEEC2ERKS2_@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1088'/>
+            <parameter type-id='type-id-1089'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEEaSERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='807' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEEaSERKS2_@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1088'/>
-            <return type-id='type-id-1090'/>
+            <parameter type-id='type-id-1089'/>
+            <return type-id='type-id-1091'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
@@ -15684,18 +15690,18 @@ 
         <member-function access='protected' vtable-offset='4'>
           <function-decl name='seekoff' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='599' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1085'/>
+            <parameter type-id='type-id-1086'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1084'/>
+            <return type-id='type-id-1085'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='5'>
           <function-decl name='seekpos' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='611' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1084'/>
+            <parameter type-id='type-id-1085'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1084'/>
+            <return type-id='type-id-1085'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='6'>
@@ -15721,26 +15727,26 @@ 
         <member-function access='protected' vtable-offset='9'>
           <function-decl name='underflow' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='10'>
           <function-decl name='uflow' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='697' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <return type-id='type-id-1083'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='11'>
           <function-decl name='pbackfail' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1083'/>
-            <return type-id='type-id-1083'/>
+            <parameter type-id='type-id-1084'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='12'>
           <function-decl name='xsputn' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf.tcc' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1087'/>
+            <parameter type-id='type-id-1088'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
@@ -15748,8 +15754,8 @@ 
         <member-function access='protected' vtable-offset='13'>
           <function-decl name='overflow' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi@@GLIBCXX_3.4'>
             <parameter type-id='type-id-808' is-artificial='yes'/>
-            <parameter type-id='type-id-1083'/>
-            <return type-id='type-id-1083'/>
+            <parameter type-id='type-id-1084'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -15758,16 +15764,16 @@ 
           <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='126' column='1' id='type-id-812'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='128' column='1' id='type-id-1091'/>
+          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='128' column='1' id='type-id-1092'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='129' column='1' id='type-id-1092'/>
+          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='129' column='1' id='type-id-1093'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='130' column='1' id='type-id-1093'/>
+          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='130' column='1' id='type-id-1094'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='135' column='1' id='type-id-1094'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='135' column='1' id='type-id-1095'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='64'>
           <var-decl name='_M_in_beg' type-id='type-id-813' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='181' column='1'/>
@@ -15819,19 +15825,19 @@ 
         <member-function access='private'>
           <function-decl name='sbumpc' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6sbumpcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE6sbumpcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='sgetc' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='snextc' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6snextcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE6snextcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
@@ -15885,7 +15891,7 @@ 
         <member-function access='private'>
           <function-decl name='sputn' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputnEPKwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputnEPKwl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1095'/>
+            <parameter type-id='type-id-1096'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
@@ -15894,7 +15900,7 @@ 
           <function-decl name='sputc' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputcEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputcEw@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
             <parameter type-id='type-id-812'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -15919,10 +15925,10 @@ 
         <member-function access='private'>
           <function-decl name='pubseekoff' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1093'/>
+            <parameter type-id='type-id-1094'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1092'/>
+            <return type-id='type-id-1093'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -15934,7 +15940,7 @@ 
         <member-function access='private'>
           <function-decl name='sungetc' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7sungetcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE7sungetcEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -15954,22 +15960,22 @@ 
         <member-function access='private'>
           <function-decl name='pubseekpos' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1092'/>
+            <parameter type-id='type-id-1093'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1092'/>
+            <return type-id='type-id-1093'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='sputbackc' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9sputbackcEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='369' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE9sputbackcEw@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
             <parameter type-id='type-id-812'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_streambuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='799' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1096'/>
+            <parameter type-id='type-id-1097'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -15985,7 +15991,7 @@ 
             <parameter type-id='type-id-811' is-artificial='yes'/>
             <parameter type-id='type-id-813'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-1097'/>
+            <return type-id='type-id-1098'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
@@ -16003,15 +16009,15 @@ 
         <member-function access='private'>
           <function-decl name='basic_streambuf' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2ERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='799' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2ERKS2_@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1096'/>
+            <parameter type-id='type-id-1097'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEEaSERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='807' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEEaSERKS2_@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1096'/>
-            <return type-id='type-id-1098'/>
+            <parameter type-id='type-id-1097'/>
+            <return type-id='type-id-1099'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
@@ -16053,18 +16059,18 @@ 
         <member-function access='protected' vtable-offset='4'>
           <function-decl name='seekoff' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='599' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1093'/>
+            <parameter type-id='type-id-1094'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1092'/>
+            <return type-id='type-id-1093'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='5'>
           <function-decl name='seekpos' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='611' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1092'/>
+            <parameter type-id='type-id-1093'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1092'/>
+            <return type-id='type-id-1093'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='6'>
@@ -16090,26 +16096,26 @@ 
         <member-function access='protected' vtable-offset='9'>
           <function-decl name='underflow' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='10'>
           <function-decl name='uflow' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='697' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <return type-id='type-id-1091'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='11'>
           <function-decl name='pbackfail' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEj@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1091'/>
-            <return type-id='type-id-1091'/>
+            <parameter type-id='type-id-1092'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='12'>
           <function-decl name='xsputn' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf.tcc' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1095'/>
+            <parameter type-id='type-id-1096'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
           </function-decl>
@@ -16117,8 +16123,8 @@ 
         <member-function access='protected' vtable-offset='13'>
           <function-decl name='overflow' mangled-name='_ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEj@@GLIBCXX_3.4'>
             <parameter type-id='type-id-811' is-artificial='yes'/>
-            <parameter type-id='type-id-1091'/>
-            <return type-id='type-id-1091'/>
+            <parameter type-id='type-id-1092'/>
+            <return type-id='type-id-1092'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -16126,16 +16132,16 @@ 
     <namespace-decl name='__gnu_cxx'>
       <class-decl name='__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='710' column='1' id='type-id-265'>
         <member-type access='private'>
-          <typedef-decl name='iterator_category' type-id='type-id-347' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='719' column='1' id='type-id-1099'/>
+          <typedef-decl name='iterator_category' type-id='type-id-347' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='719' column='1' id='type-id-1100'/>
         </member-type>
         <member-type access='private'>
           <typedef-decl name='difference_type' type-id='type-id-349' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='721' column='1' id='type-id-276'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-352' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1100'/>
+          <typedef-decl name='reference' type-id='type-id-352' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1101'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-351' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1101'/>
+          <typedef-decl name='pointer' type-id='type-id-351' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1102'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='0'>
           <var-decl name='_M_current' type-id='type-id-94' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='713' column='1'/>
@@ -16184,7 +16190,7 @@ 
           <function-decl name='operator[]' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEixERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='772' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-275' is-artificial='yes'/>
             <parameter type-id='type-id-278'/>
-            <return type-id='type-id-1100'/>
+            <return type-id='type-id-1101'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
@@ -16210,7 +16216,7 @@ 
         <member-function access='private' const='yes'>
           <function-decl name='operator*' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-275' is-artificial='yes'/>
-            <return type-id='type-id-1100'/>
+            <return type-id='type-id-1101'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -16229,216 +16235,216 @@ 
       </class-decl>
       <class-decl name='__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='710' column='1' id='type-id-862'>
         <member-type access='private'>
-          <typedef-decl name='difference_type' type-id='type-id-1103' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='721' column='1' id='type-id-1102'/>
+          <typedef-decl name='difference_type' type-id='type-id-1104' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='721' column='1' id='type-id-1103'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-1105' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1104'/>
+          <typedef-decl name='reference' type-id='type-id-1106' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1105'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-1107' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1106'/>
+          <typedef-decl name='pointer' type-id='type-id-1108' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1107'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='0'>
           <var-decl name='_M_current' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='713' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__normal_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='725' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__normal_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='728' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
             <parameter type-id='type-id-671'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator+=' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEpLERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='776' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
-            <parameter type-id='type-id-1109'/>
-            <return type-id='type-id-1110'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
+            <parameter type-id='type-id-1110'/>
+            <return type-id='type-id-1111'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator-=' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEmIERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='784' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
-            <parameter type-id='type-id-1109'/>
-            <return type-id='type-id-1110'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
+            <parameter type-id='type-id-1110'/>
+            <return type-id='type-id-1111'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator[]' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEixERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='772' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1111' is-artificial='yes'/>
-            <parameter type-id='type-id-1109'/>
-            <return type-id='type-id-1104'/>
+            <parameter type-id='type-id-1112' is-artificial='yes'/>
+            <parameter type-id='type-id-1110'/>
+            <return type-id='type-id-1105'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator+' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEplERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='780' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1111' is-artificial='yes'/>
-            <parameter type-id='type-id-1109'/>
+            <parameter type-id='type-id-1112' is-artificial='yes'/>
+            <parameter type-id='type-id-1110'/>
             <return type-id='type-id-862'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator-' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEmiERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='788' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1111' is-artificial='yes'/>
-            <parameter type-id='type-id-1109'/>
+            <parameter type-id='type-id-1112' is-artificial='yes'/>
+            <parameter type-id='type-id-1110'/>
             <return type-id='type-id-862'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='base' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsE4baseEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='792' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1111' is-artificial='yes'/>
+            <parameter type-id='type-id-1112' is-artificial='yes'/>
             <return type-id='type-id-671'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator--' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEmmEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='767' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <return type-id='type-id-862'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator--' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEmmEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='760' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
-            <return type-id='type-id-1110'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
+            <return type-id='type-id-1111'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator*' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1111' is-artificial='yes'/>
-            <return type-id='type-id-1104'/>
+            <parameter type-id='type-id-1112' is-artificial='yes'/>
+            <return type-id='type-id-1105'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEppEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='755' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <return type-id='type-id-862'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1108' is-artificial='yes'/>
-            <return type-id='type-id-1110'/>
+            <parameter type-id='type-id-1109' is-artificial='yes'/>
+            <return type-id='type-id-1111'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='__normal_iterator&lt;const wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='710' column='1' id='type-id-877'>
         <member-type access='private'>
-          <typedef-decl name='difference_type' type-id='type-id-1113' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='721' column='1' id='type-id-1112'/>
+          <typedef-decl name='difference_type' type-id='type-id-1114' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='721' column='1' id='type-id-1113'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-1115' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1114'/>
+          <typedef-decl name='reference' type-id='type-id-1116' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1115'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-1117' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1116'/>
+          <typedef-decl name='pointer' type-id='type-id-1118' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1117'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='0'>
           <var-decl name='_M_current' type-id='type-id-342' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='713' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__normal_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='725' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__normal_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='728' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
             <parameter type-id='type-id-782'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator+=' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEpLERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='776' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
-            <parameter type-id='type-id-1119'/>
-            <return type-id='type-id-1120'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
+            <parameter type-id='type-id-1120'/>
+            <return type-id='type-id-1121'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator-=' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEmIERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='784' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
-            <parameter type-id='type-id-1119'/>
-            <return type-id='type-id-1120'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
+            <parameter type-id='type-id-1120'/>
+            <return type-id='type-id-1121'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator[]' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEixERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='772' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1121' is-artificial='yes'/>
-            <parameter type-id='type-id-1119'/>
-            <return type-id='type-id-1114'/>
+            <parameter type-id='type-id-1122' is-artificial='yes'/>
+            <parameter type-id='type-id-1120'/>
+            <return type-id='type-id-1115'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator+' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEplERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='780' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1121' is-artificial='yes'/>
-            <parameter type-id='type-id-1119'/>
+            <parameter type-id='type-id-1122' is-artificial='yes'/>
+            <parameter type-id='type-id-1120'/>
             <return type-id='type-id-877'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator-' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEmiERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='788' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1121' is-artificial='yes'/>
-            <parameter type-id='type-id-1119'/>
+            <parameter type-id='type-id-1122' is-artificial='yes'/>
+            <parameter type-id='type-id-1120'/>
             <return type-id='type-id-877'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='base' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEE4baseEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='792' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1121' is-artificial='yes'/>
+            <parameter type-id='type-id-1122' is-artificial='yes'/>
             <return type-id='type-id-782'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator--' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEmmEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='767' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <return type-id='type-id-877'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator--' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEmmEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='760' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
-            <return type-id='type-id-1120'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
+            <return type-id='type-id-1121'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator*' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1121' is-artificial='yes'/>
-            <return type-id='type-id-1114'/>
+            <parameter type-id='type-id-1122' is-artificial='yes'/>
+            <return type-id='type-id-1115'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEppEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='755' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <return type-id='type-id-877'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1118' is-artificial='yes'/>
-            <return type-id='type-id-1120'/>
+            <parameter type-id='type-id-1119' is-artificial='yes'/>
+            <return type-id='type-id-1121'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='710' column='1' id='type-id-268'>
         <member-type access='private'>
-          <typedef-decl name='iterator_category' type-id='type-id-355' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='719' column='1' id='type-id-1122'/>
+          <typedef-decl name='iterator_category' type-id='type-id-355' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='719' column='1' id='type-id-1123'/>
         </member-type>
         <member-type access='private'>
           <typedef-decl name='difference_type' type-id='type-id-356' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='721' column='1' id='type-id-281'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-358' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1123'/>
+          <typedef-decl name='reference' type-id='type-id-358' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='722' column='1' id='type-id-1124'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-357' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1124'/>
+          <typedef-decl name='pointer' type-id='type-id-357' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='723' column='1' id='type-id-1125'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='0'>
           <var-decl name='_M_current' type-id='type-id-334' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='713' column='1'/>
@@ -16474,7 +16480,7 @@ 
           <function-decl name='operator[]' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPwSbIwSt11char_traitsIwESaIwEEEixERKl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='772' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-280' is-artificial='yes'/>
             <parameter type-id='type-id-283'/>
-            <return type-id='type-id-1123'/>
+            <return type-id='type-id-1124'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
@@ -16513,7 +16519,7 @@ 
         <member-function access='private' const='yes'>
           <function-decl name='operator*' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPwSbIwSt11char_traitsIwESaIwEEEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-280' is-artificial='yes'/>
-            <return type-id='type-id-1123'/>
+            <return type-id='type-id-1124'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -16532,19 +16538,19 @@ 
       </class-decl>
       <class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-653'>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1125'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1126'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1126'/>
+          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1127'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1127'/>
+          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1128'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1128'/>
+          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1129'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1129'/>
+          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1130'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16569,41 +16575,41 @@ 
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-654' is-artificial='yes'/>
+            <parameter type-id='type-id-1127'/>
             <parameter type-id='type-id-1126'/>
-            <parameter type-id='type-id-1125'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-663' is-artificial='yes'/>
-            <return type-id='type-id-1125'/>
+            <return type-id='type-id-1126'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-654' is-artificial='yes'/>
-            <parameter type-id='type-id-1125'/>
+            <parameter type-id='type-id-1126'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-1126'/>
+            <return type-id='type-id-1127'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='new_allocator&lt;wchar_t&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-655'>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1130'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1131'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1131'/>
+          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1132'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1132'/>
+          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1133'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1133'/>
+          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1134'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1134'/>
+          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1135'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -16626,12 +16632,12 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__numeric_traits_integer&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1135'>
+      <class-decl name='__numeric_traits_integer&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1136'>
         <data-member access='public' static='yes'>
           <var-decl name='__max' type-id='type-id-668' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIcE5__maxE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='59' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='__numeric_traits_integer&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1136'>
+      <class-decl name='__numeric_traits_integer&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1137'>
         <data-member access='public' static='yes'>
           <var-decl name='__min' type-id='type-id-284' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIiE5__minE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='58' column='1'/>
         </data-member>
@@ -16639,7 +16645,7 @@ 
           <var-decl name='__max' type-id='type-id-284' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIiE5__maxE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='59' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='__numeric_traits_integer&lt;long int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1137'>
+      <class-decl name='__numeric_traits_integer&lt;long int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1138'>
         <data-member access='public' static='yes'>
           <var-decl name='__min' type-id='type-id-251' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIlE5__minE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='58' column='1'/>
         </data-member>
@@ -16647,12 +16653,12 @@ 
           <var-decl name='__max' type-id='type-id-251' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIlE5__maxE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='59' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='__numeric_traits_integer&lt;long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1138'>
+      <class-decl name='__numeric_traits_integer&lt;long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1139'>
         <data-member access='public' static='yes'>
           <var-decl name='__digits' type-id='type-id-284' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerImE8__digitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='64' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='__numeric_traits_integer&lt;short int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1139'>
+      <class-decl name='__numeric_traits_integer&lt;short int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='55' column='1' id='type-id-1140'>
         <data-member access='public' static='yes'>
           <var-decl name='__min' type-id='type-id-678' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIsE5__minE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/numeric_traits.h' line='58' column='1'/>
         </data-member>
@@ -17124,16 +17130,16 @@ 
     <type-decl name='void' id='type-id-5'/>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/chrono.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <class-decl name='timeval' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/bits/time.h' line='75' column='1' id='type-id-1140'>
+    <class-decl name='timeval' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/bits/time.h' line='75' column='1' id='type-id-1141'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='tv_sec' type-id='type-id-196' visibility='default' filepath='/usr/include/bits/time.h' line='77' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tv_usec' type-id='type-id-1141' visibility='default' filepath='/usr/include/bits/time.h' line='78' column='1'/>
+        <var-decl name='tv_usec' type-id='type-id-1142' visibility='default' filepath='/usr/include/bits/time.h' line='78' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='__suseconds_t' type-id='type-id-20' filepath='/usr/include/bits/types.h' line='151' column='1' id='type-id-1141'/>
-    <class-decl name='timezone' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/sys/time.h' line='57' column='1' id='type-id-1142'>
+    <typedef-decl name='__suseconds_t' type-id='type-id-20' filepath='/usr/include/bits/types.h' line='151' column='1' id='type-id-1142'/>
+    <class-decl name='timezone' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/sys/time.h' line='57' column='1' id='type-id-1143'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='tz_minuteswest' type-id='type-id-6' visibility='default' filepath='/usr/include/sys/time.h' line='59' column='1'/>
       </data-member>
@@ -17141,186 +17147,186 @@ 
         <var-decl name='tz_dsttime' type-id='type-id-6' visibility='default' filepath='/usr/include/sys/time.h' line='60' column='1'/>
       </data-member>
     </class-decl>
-    <qualified-type-def type-id='type-id-1143' const='yes' id='type-id-1144'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1144' size-in-bits='64' id='type-id-1145'/>
-    <pointer-type-def type-id='type-id-1144' size-in-bits='64' id='type-id-1146'/>
-    <qualified-type-def type-id='type-id-1147' const='yes' id='type-id-1148'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1148' size-in-bits='64' id='type-id-1149'/>
-    <qualified-type-def type-id='type-id-1150' const='yes' id='type-id-1151'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1151' size-in-bits='64' id='type-id-1152'/>
-    <pointer-type-def type-id='type-id-1151' size-in-bits='64' id='type-id-1153'/>
-    <qualified-type-def type-id='type-id-1154' const='yes' id='type-id-1155'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1155' size-in-bits='64' id='type-id-1156'/>
-    <qualified-type-def type-id='type-id-369' const='yes' id='type-id-1157'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1157' size-in-bits='64' id='type-id-1158'/>
-    <qualified-type-def type-id='type-id-370' const='yes' id='type-id-1159'/>
-    <pointer-type-def type-id='type-id-1159' size-in-bits='64' id='type-id-1160'/>
-    <qualified-type-def type-id='type-id-1161' const='yes' id='type-id-1162'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1162' size-in-bits='64' id='type-id-1163'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1143' size-in-bits='64' id='type-id-1164'/>
-    <pointer-type-def type-id='type-id-1143' size-in-bits='64' id='type-id-1165'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1150' size-in-bits='64' id='type-id-1166'/>
-    <pointer-type-def type-id='type-id-1150' size-in-bits='64' id='type-id-1167'/>
-    <reference-type-def kind='lvalue' type-id='type-id-370' size-in-bits='64' id='type-id-1168'/>
-    <pointer-type-def type-id='type-id-370' size-in-bits='64' id='type-id-1169'/>
-    <pointer-type-def type-id='type-id-1140' size-in-bits='64' id='type-id-1170'/>
-    <pointer-type-def type-id='type-id-1142' size-in-bits='64' id='type-id-1171'/>
+    <qualified-type-def type-id='type-id-1144' const='yes' id='type-id-1145'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1145' size-in-bits='64' id='type-id-1146'/>
+    <pointer-type-def type-id='type-id-1145' size-in-bits='64' id='type-id-1147'/>
+    <qualified-type-def type-id='type-id-1148' const='yes' id='type-id-1149'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1149' size-in-bits='64' id='type-id-1150'/>
+    <qualified-type-def type-id='type-id-1151' const='yes' id='type-id-1152'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1152' size-in-bits='64' id='type-id-1153'/>
+    <pointer-type-def type-id='type-id-1152' size-in-bits='64' id='type-id-1154'/>
+    <qualified-type-def type-id='type-id-1155' const='yes' id='type-id-1156'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1156' size-in-bits='64' id='type-id-1157'/>
+    <qualified-type-def type-id='type-id-369' const='yes' id='type-id-1158'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1158' size-in-bits='64' id='type-id-1159'/>
+    <qualified-type-def type-id='type-id-370' const='yes' id='type-id-1160'/>
+    <pointer-type-def type-id='type-id-1160' size-in-bits='64' id='type-id-1161'/>
+    <qualified-type-def type-id='type-id-1162' const='yes' id='type-id-1163'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1163' size-in-bits='64' id='type-id-1164'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1144' size-in-bits='64' id='type-id-1165'/>
+    <pointer-type-def type-id='type-id-1144' size-in-bits='64' id='type-id-1166'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1151' size-in-bits='64' id='type-id-1167'/>
+    <pointer-type-def type-id='type-id-1151' size-in-bits='64' id='type-id-1168'/>
+    <reference-type-def kind='lvalue' type-id='type-id-370' size-in-bits='64' id='type-id-1169'/>
+    <pointer-type-def type-id='type-id-370' size-in-bits='64' id='type-id-1170'/>
+    <pointer-type-def type-id='type-id-1141' size-in-bits='64' id='type-id-1171'/>
+    <pointer-type-def type-id='type-id-1143' size-in-bits='64' id='type-id-1172'/>
     <namespace-decl name='std'>
-      <class-decl name='common_type&lt;std::chrono::duration&lt;long int, std::ratio&lt;1l, 1l&gt; &gt;, std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='74' column='1' id='type-id-1172'>
+      <class-decl name='common_type&lt;std::chrono::duration&lt;long int, std::ratio&lt;1l, 1l&gt; &gt;, std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='74' column='1' id='type-id-1173'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1143' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='85' column='1' id='type-id-1173'/>
+          <typedef-decl name='type' type-id='type-id-1144' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='85' column='1' id='type-id-1174'/>
         </member-type>
       </class-decl>
-      <class-decl name='enable_if&lt;true, std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1723' column='1' id='type-id-1174'>
+      <class-decl name='enable_if&lt;true, std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1723' column='1' id='type-id-1175'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1143' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1724' column='1' id='type-id-1175'/>
+          <typedef-decl name='type' type-id='type-id-1144' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1724' column='1' id='type-id-1176'/>
         </member-type>
       </class-decl>
       <namespace-decl name='chrono'>
-        <class-decl name='__duration_cast_impl&lt;std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt;, std::ratio&lt;1000000l, 1l&gt;, long int, false, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='147' column='1' id='type-id-1176'>
+        <class-decl name='__duration_cast_impl&lt;std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt;, std::ratio&lt;1000000l, 1l&gt;, long int, false, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='147' column='1' id='type-id-1177'>
           <member-function access='public' static='yes'>
             <function-decl name='__cast&lt;long int, std::ratio&lt;1l&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1152'/>
-              <return type-id='type-id-1143'/>
+              <parameter type-id='type-id-1153'/>
+              <return type-id='type-id-1144'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='221' column='1' id='type-id-1143'>
+        <class-decl name='duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='221' column='1' id='type-id-1144'>
           <member-type access='public'>
-            <typedef-decl name='rep' type-id='type-id-20' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='223' column='1' id='type-id-1147'/>
+            <typedef-decl name='rep' type-id='type-id-20' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='223' column='1' id='type-id-1148'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='__r' type-id='type-id-1147' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='350' column='1'/>
+            <var-decl name='__r' type-id='type-id-1148' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='350' column='1'/>
           </data-member>
           <member-function access='public'>
             <function-decl name='duration' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='232' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1165' is-artificial='yes'/>
+              <parameter type-id='type-id-1166' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='duration' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1165' is-artificial='yes'/>
-              <parameter type-id='type-id-1145'/>
+              <parameter type-id='type-id-1166' is-artificial='yes'/>
+              <parameter type-id='type-id-1146'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' destructor='yes'>
             <function-decl name='~duration' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1165' is-artificial='yes'/>
+              <parameter type-id='type-id-1166' is-artificial='yes'/>
               <parameter type-id='type-id-6' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='duration&lt;long int, void&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1165' is-artificial='yes'/>
+              <parameter type-id='type-id-1166' is-artificial='yes'/>
               <parameter type-id='type-id-675'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='duration&lt;long int, std::ratio&lt;1l&gt;, void&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1165' is-artificial='yes'/>
-              <parameter type-id='type-id-1152'/>
+              <parameter type-id='type-id-1166' is-artificial='yes'/>
+              <parameter type-id='type-id-1153'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' const='yes'>
             <function-decl name='count' mangled-name='_ZNKSt6chrono8durationIlSt5ratioILl1ELl1000000EEE5countEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='255' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1146' is-artificial='yes'/>
-              <return type-id='type-id-1147'/>
+              <parameter type-id='type-id-1147' is-artificial='yes'/>
+              <return type-id='type-id-1148'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='duration&lt;long int, std::ratio&lt;1l, 1l&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='221' column='1' id='type-id-1150'>
+        <class-decl name='duration&lt;long int, std::ratio&lt;1l, 1l&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='221' column='1' id='type-id-1151'>
           <member-type access='public'>
-            <typedef-decl name='rep' type-id='type-id-20' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='223' column='1' id='type-id-1154'/>
+            <typedef-decl name='rep' type-id='type-id-20' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='223' column='1' id='type-id-1155'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='__r' type-id='type-id-1154' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='350' column='1'/>
+            <var-decl name='__r' type-id='type-id-1155' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='350' column='1'/>
           </data-member>
           <member-function access='public'>
             <function-decl name='duration' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='232' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1167' is-artificial='yes'/>
+              <parameter type-id='type-id-1168' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='duration' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1167' is-artificial='yes'/>
-              <parameter type-id='type-id-1152'/>
+              <parameter type-id='type-id-1168' is-artificial='yes'/>
+              <parameter type-id='type-id-1153'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' destructor='yes'>
             <function-decl name='~duration' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1167' is-artificial='yes'/>
+              <parameter type-id='type-id-1168' is-artificial='yes'/>
               <parameter type-id='type-id-6' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='duration&lt;long int, void&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1167' is-artificial='yes'/>
+              <parameter type-id='type-id-1168' is-artificial='yes'/>
               <parameter type-id='type-id-675'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' const='yes'>
             <function-decl name='count' mangled-name='_ZNKSt6chrono8durationIlSt5ratioILl1ELl1EEE5countEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='255' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1153' is-artificial='yes'/>
-              <return type-id='type-id-1154'/>
+              <parameter type-id='type-id-1154' is-artificial='yes'/>
+              <return type-id='type-id-1155'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <typedef-decl name='microseconds' type-id='type-id-1143' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='507' column='1' id='type-id-368'/>
+        <typedef-decl name='microseconds' type-id='type-id-1144' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='507' column='1' id='type-id-368'/>
         <class-decl name='time_point&lt;std::chrono::system_clock, std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='523' column='1' id='type-id-370'>
           <member-type access='public'>
-            <typedef-decl name='duration' type-id='type-id-1143' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='526' column='1' id='type-id-1161'/>
+            <typedef-decl name='duration' type-id='type-id-1144' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='526' column='1' id='type-id-1162'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='__d' type-id='type-id-1161' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='573' column='1'/>
+            <var-decl name='__d' type-id='type-id-1162' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='573' column='1'/>
           </data-member>
           <member-function access='public'>
             <function-decl name='time_point' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='530' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1169' is-artificial='yes'/>
+              <parameter type-id='type-id-1170' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='time_point' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='533' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1169' is-artificial='yes'/>
-              <parameter type-id='type-id-1163'/>
+              <parameter type-id='type-id-1170' is-artificial='yes'/>
+              <parameter type-id='type-id-1164'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
         </class-decl>
         <function-decl name='duration_cast&lt;std::chrono::duration&lt;long int, std::ratio&lt;1l, 1000000l&gt; &gt;, long int, std::ratio&lt;1l&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1152'/>
-          <return type-id='type-id-1175'/>
+          <parameter type-id='type-id-1153'/>
+          <return type-id='type-id-1176'/>
         </function-decl>
         <function-decl name='operator+&lt;long int, std::ratio&lt;1l&gt;, long int, std::ratio&lt;1l, 1000000l&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/chrono' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1152'/>
-          <parameter type-id='type-id-1145'/>
-          <return type-id='type-id-1173'/>
+          <parameter type-id='type-id-1153'/>
+          <parameter type-id='type-id-1146'/>
+          <return type-id='type-id-1174'/>
         </function-decl>
       </namespace-decl>
     </namespace-decl>
     <function-decl name='gettimeofday' filepath='/usr/include/sys/time.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
-      <parameter type-id='type-id-1170'/>
       <parameter type-id='type-id-1171'/>
+      <parameter type-id='type-id-1172'/>
       <return type-id='type-id-6'/>
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/condition_variable.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='384' id='type-id-1177'>
-      <subrange length='48' type-id='type-id-176' id='type-id-1178'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='384' id='type-id-1178'>
+      <subrange length='48' type-id='type-id-176' id='type-id-1179'/>
     </array-type-def>
-    <typedef-decl name='__gthread_cond_t' type-id='type-id-1179' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/gthr-default.h' line='58' column='1' id='type-id-1180'/>
-    <union-decl name='pthread_cond_t' size-in-bits='384' naming-typedef-id='type-id-1179' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='116' column='1' id='type-id-1181'>
+    <typedef-decl name='__gthread_cond_t' type-id='type-id-1180' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/gthr-default.h' line='58' column='1' id='type-id-1181'/>
+    <union-decl name='pthread_cond_t' size-in-bits='384' naming-typedef-id='type-id-1180' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='116' column='1' id='type-id-1182'>
       <member-type access='public'>
-        <class-decl name='__anonymous_struct__' size-in-bits='384' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='118' column='1' id='type-id-1182'>
+        <class-decl name='__anonymous_struct__' size-in-bits='384' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='118' column='1' id='type-id-1183'>
           <data-member access='public' layout-offset-in-bits='0'>
             <var-decl name='__lock' type-id='type-id-6' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='119' column='1'/>
           </data-member>
@@ -17348,97 +17354,97 @@ 
         </class-decl>
       </member-type>
       <data-member access='public'>
-        <var-decl name='__data' type-id='type-id-1182' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='127' column='1'/>
+        <var-decl name='__data' type-id='type-id-1183' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='127' column='1'/>
       </data-member>
       <data-member access='public'>
-        <var-decl name='__size' type-id='type-id-1177' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='128' column='1'/>
+        <var-decl name='__size' type-id='type-id-1178' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='128' column='1'/>
       </data-member>
       <data-member access='public'>
         <var-decl name='__align' type-id='type-id-262' visibility='default' filepath='/usr/include/bits/pthreadtypes.h' line='129' column='1'/>
       </data-member>
     </union-decl>
-    <typedef-decl name='pthread_cond_t' type-id='type-id-1181' filepath='/usr/include/bits/pthreadtypes.h' line='130' column='1' id='type-id-1179'/>
-    <qualified-type-def type-id='type-id-573' const='yes' id='type-id-1183'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1183' size-in-bits='64' id='type-id-1184'/>
-    <qualified-type-def type-id='type-id-1185' const='yes' id='type-id-1186'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1186' size-in-bits='64' id='type-id-1187'/>
-    <qualified-type-def type-id='type-id-1188' const='yes' id='type-id-1189'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1189' size-in-bits='64' id='type-id-1190'/>
-    <pointer-type-def type-id='type-id-1189' size-in-bits='64' id='type-id-1191'/>
-    <reference-type-def kind='lvalue' type-id='type-id-573' size-in-bits='64' id='type-id-1192'/>
-    <pointer-type-def type-id='type-id-573' size-in-bits='64' id='type-id-1193'/>
-    <pointer-type-def type-id='type-id-1194' size-in-bits='64' id='type-id-1195'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1185' size-in-bits='64' id='type-id-1196'/>
-    <pointer-type-def type-id='type-id-1185' size-in-bits='64' id='type-id-1197'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1188' size-in-bits='64' id='type-id-1198'/>
-    <pointer-type-def type-id='type-id-1188' size-in-bits='64' id='type-id-1199'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1200' size-in-bits='64' id='type-id-1201'/>
-    <pointer-type-def type-id='type-id-1200' size-in-bits='64' id='type-id-1202'/>
+    <typedef-decl name='pthread_cond_t' type-id='type-id-1182' filepath='/usr/include/bits/pthreadtypes.h' line='130' column='1' id='type-id-1180'/>
+    <qualified-type-def type-id='type-id-573' const='yes' id='type-id-1184'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1184' size-in-bits='64' id='type-id-1185'/>
+    <qualified-type-def type-id='type-id-1186' const='yes' id='type-id-1187'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1187' size-in-bits='64' id='type-id-1188'/>
+    <qualified-type-def type-id='type-id-1189' const='yes' id='type-id-1190'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1190' size-in-bits='64' id='type-id-1191'/>
+    <pointer-type-def type-id='type-id-1190' size-in-bits='64' id='type-id-1192'/>
+    <reference-type-def kind='lvalue' type-id='type-id-573' size-in-bits='64' id='type-id-1193'/>
+    <pointer-type-def type-id='type-id-573' size-in-bits='64' id='type-id-1194'/>
+    <pointer-type-def type-id='type-id-1195' size-in-bits='64' id='type-id-1196'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1186' size-in-bits='64' id='type-id-1197'/>
+    <pointer-type-def type-id='type-id-1186' size-in-bits='64' id='type-id-1198'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1189' size-in-bits='64' id='type-id-1199'/>
+    <pointer-type-def type-id='type-id-1189' size-in-bits='64' id='type-id-1200'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1201' size-in-bits='64' id='type-id-1202'/>
+    <pointer-type-def type-id='type-id-1201' size-in-bits='64' id='type-id-1203'/>
     <namespace-decl name='std'>
       <class-decl name='condition_variable' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='59' column='1' id='type-id-573'>
         <member-type access='private'>
-          <typedef-decl name='__native_type' type-id='type-id-1180' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='62' column='1' id='type-id-1194'/>
+          <typedef-decl name='__native_type' type-id='type-id-1181' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='62' column='1' id='type-id-1195'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='native_handle_type' type-id='type-id-1195' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='71' column='1' id='type-id-1203'/>
+          <typedef-decl name='native_handle_type' type-id='type-id-1196' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='71' column='1' id='type-id-1204'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_cond' type-id='type-id-1194' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='65' column='1'/>
+          <var-decl name='_M_cond' type-id='type-id-1195' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='65' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='condition_variable' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~condition_variable' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='condition_variable' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
-            <parameter type-id='type-id-1184'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
+            <parameter type-id='type-id-1185'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='condition_variable' mangled-name='_ZNSt18condition_variableC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='73' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18condition_variableC2Ev@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~condition_variable' mangled-name='_ZNSt18condition_variableD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='74' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18condition_variableD2Ev@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='wait' mangled-name='_ZNSt18condition_variable4waitERSt11unique_lockISt5mutexE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18condition_variable4waitERSt11unique_lockISt5mutexE@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
-            <parameter type-id='type-id-1198'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
+            <parameter type-id='type-id-1199'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='notify_one' mangled-name='_ZNSt18condition_variable10notify_oneEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18condition_variable10notify_oneEv@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='notify_all' mangled-name='_ZNSt18condition_variable10notify_allEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18condition_variable10notify_allEv@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1193' is-artificial='yes'/>
+            <parameter type-id='type-id-1194' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='condition_variable_any' size-in-bits='704' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='173' column='1' id='type-id-1185'>
+      <class-decl name='condition_variable_any' size-in-bits='704' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='173' column='1' id='type-id-1186'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_cond' type-id='type-id-573' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='176' column='1'/>
         </data-member>
@@ -17447,182 +17453,182 @@ 
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='condition_variable_any' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1197' is-artificial='yes'/>
+            <parameter type-id='type-id-1198' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~condition_variable_any' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1197' is-artificial='yes'/>
+            <parameter type-id='type-id-1198' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='condition_variable_any' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='204' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1197' is-artificial='yes'/>
-            <parameter type-id='type-id-1187'/>
+            <parameter type-id='type-id-1198' is-artificial='yes'/>
+            <parameter type-id='type-id-1188'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='condition_variable_any' mangled-name='_ZNSt22condition_variable_anyC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt22condition_variable_anyC2Ev@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1197' is-artificial='yes'/>
+            <parameter type-id='type-id-1198' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~condition_variable_any' mangled-name='_ZNSt22condition_variable_anyD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/condition_variable' line='202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt22condition_variable_anyD2Ev@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1197' is-artificial='yes'/>
+            <parameter type-id='type-id-1198' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='unique_lock&lt;std::mutex&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='467' column='1' id='type-id-1188'>
+      <class-decl name='unique_lock&lt;std::mutex&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='467' column='1' id='type-id-1189'>
         <member-type access='private'>
-          <typedef-decl name='mutex_type' type-id='type-id-210' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='470' column='1' id='type-id-1200'/>
+          <typedef-decl name='mutex_type' type-id='type-id-210' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='470' column='1' id='type-id-1201'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_device' type-id='type-id-1202' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='636' column='1'/>
+          <var-decl name='_M_device' type-id='type-id-1203' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='636' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
           <var-decl name='_M_owns' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='637' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='472' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='476' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
-            <parameter type-id='type-id-1201'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
+            <parameter type-id='type-id-1202'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='483' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
-            <parameter type-id='type-id-1201'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
+            <parameter type-id='type-id-1202'/>
             <parameter type-id='type-id-576'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='487' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
-            <parameter type-id='type-id-1201'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
+            <parameter type-id='type-id-1202'/>
             <parameter type-id='type-id-577'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='491' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
-            <parameter type-id='type-id-1201'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
+            <parameter type-id='type-id-1202'/>
             <parameter type-id='type-id-243'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='509' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
-            <parameter type-id='type-id-1190'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
+            <parameter type-id='type-id-1191'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_lock' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1199' is-artificial='yes'/>
-            <parameter type-id='type-id-1198'/>
+            <parameter type-id='type-id-1200' is-artificial='yes'/>
+            <parameter type-id='type-id-1199'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='mutex' mangled-name='_ZNKSt11unique_lockISt5mutexE5mutexEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1191' is-artificial='yes'/>
-            <return type-id='type-id-1202'/>
+            <parameter type-id='type-id-1192' is-artificial='yes'/>
+            <return type-id='type-id-1203'/>
           </function-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/debug.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-1204' size-in-bits='4032' id='type-id-1205'>
-      <subrange length='9' type-id='type-id-176' id='type-id-1206'/>
+    <array-type-def dimensions='1' type-id='type-id-1205' size-in-bits='4032' id='type-id-1206'>
+      <subrange length='9' type-id='type-id-176' id='type-id-1207'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='3008' id='type-id-1207'>
-      <subrange length='47' type-id='type-id-176' id='type-id-1208'/>
+    <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='3008' id='type-id-1208'>
+      <subrange length='47' type-id='type-id-176' id='type-id-1209'/>
     </array-type-def>
-    <pointer-type-def type-id='type-id-1209' size-in-bits='64' id='type-id-1210'/>
-    <pointer-type-def type-id='type-id-1204' size-in-bits='64' id='type-id-1211'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1212' size-in-bits='64' id='type-id-1213'/>
-    <pointer-type-def type-id='type-id-1212' size-in-bits='64' id='type-id-1214'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1214' size-in-bits='64' id='type-id-1215'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1216' size-in-bits='64' id='type-id-1217'/>
-    <pointer-type-def type-id='type-id-1216' size-in-bits='64' id='type-id-1218'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1219' size-in-bits='64' id='type-id-1220'/>
-    <pointer-type-def type-id='type-id-1219' size-in-bits='64' id='type-id-1221'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1222' size-in-bits='64' id='type-id-1223'/>
-    <pointer-type-def type-id='type-id-1222' size-in-bits='64' id='type-id-1224'/>
-    <qualified-type-def type-id='type-id-1209' const='yes' id='type-id-1225'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1225' size-in-bits='64' id='type-id-1226'/>
-    <pointer-type-def type-id='type-id-1225' size-in-bits='64' id='type-id-1227'/>
-    <qualified-type-def type-id='type-id-1204' const='yes' id='type-id-1228'/>
-    <pointer-type-def type-id='type-id-1228' size-in-bits='64' id='type-id-1229'/>
-    <qualified-type-def type-id='type-id-1212' const='yes' id='type-id-1230'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1230' size-in-bits='64' id='type-id-1231'/>
-    <pointer-type-def type-id='type-id-1230' size-in-bits='64' id='type-id-1232'/>
-    <qualified-type-def type-id='type-id-1216' const='yes' id='type-id-1233'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1233' size-in-bits='64' id='type-id-1234'/>
-    <pointer-type-def type-id='type-id-1233' size-in-bits='64' id='type-id-1235'/>
-    <qualified-type-def type-id='type-id-1219' const='yes' id='type-id-1236'/>
-    <pointer-type-def type-id='type-id-1236' size-in-bits='64' id='type-id-1237'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1238' size-in-bits='64' id='type-id-1239'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1240' size-in-bits='64' id='type-id-1241'/>
-    <qualified-type-def type-id='type-id-34' const='yes' id='type-id-1242'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1242' size-in-bits='64' id='type-id-345'/>
+    <pointer-type-def type-id='type-id-1210' size-in-bits='64' id='type-id-1211'/>
+    <pointer-type-def type-id='type-id-1205' size-in-bits='64' id='type-id-1212'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1213' size-in-bits='64' id='type-id-1214'/>
+    <pointer-type-def type-id='type-id-1213' size-in-bits='64' id='type-id-1215'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1215' size-in-bits='64' id='type-id-1216'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1217' size-in-bits='64' id='type-id-1218'/>
+    <pointer-type-def type-id='type-id-1217' size-in-bits='64' id='type-id-1219'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1220' size-in-bits='64' id='type-id-1221'/>
+    <pointer-type-def type-id='type-id-1220' size-in-bits='64' id='type-id-1222'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1223' size-in-bits='64' id='type-id-1224'/>
+    <pointer-type-def type-id='type-id-1223' size-in-bits='64' id='type-id-1225'/>
+    <qualified-type-def type-id='type-id-1210' const='yes' id='type-id-1226'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1226' size-in-bits='64' id='type-id-1227'/>
+    <pointer-type-def type-id='type-id-1226' size-in-bits='64' id='type-id-1228'/>
+    <qualified-type-def type-id='type-id-1205' const='yes' id='type-id-1229'/>
+    <pointer-type-def type-id='type-id-1229' size-in-bits='64' id='type-id-1230'/>
+    <qualified-type-def type-id='type-id-1213' const='yes' id='type-id-1231'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1231' size-in-bits='64' id='type-id-1232'/>
+    <pointer-type-def type-id='type-id-1231' size-in-bits='64' id='type-id-1233'/>
+    <qualified-type-def type-id='type-id-1217' const='yes' id='type-id-1234'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1234' size-in-bits='64' id='type-id-1235'/>
+    <pointer-type-def type-id='type-id-1234' size-in-bits='64' id='type-id-1236'/>
+    <qualified-type-def type-id='type-id-1220' const='yes' id='type-id-1237'/>
+    <pointer-type-def type-id='type-id-1237' size-in-bits='64' id='type-id-1238'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1239' size-in-bits='64' id='type-id-1240'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1241' size-in-bits='64' id='type-id-1242'/>
+    <qualified-type-def type-id='type-id-34' const='yes' id='type-id-1243'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1243' size-in-bits='64' id='type-id-345'/>
     <namespace-decl name='std'>
-      <class-decl name='remove_reference&lt;__gnu_debug::_Safe_iterator_base*&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1330' column='1' id='type-id-1243'>
+      <class-decl name='remove_reference&lt;__gnu_debug::_Safe_iterator_base*&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1330' column='1' id='type-id-1244'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1214' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1331' column='1' id='type-id-1238'/>
+          <typedef-decl name='type' type-id='type-id-1215' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1331' column='1' id='type-id-1239'/>
         </member-type>
       </class-decl>
-      <class-decl name='remove_reference&lt;unsigned int&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1330' column='1' id='type-id-1244'>
+      <class-decl name='remove_reference&lt;unsigned int&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1330' column='1' id='type-id-1245'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-39' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1331' column='1' id='type-id-1240'/>
+          <typedef-decl name='type' type-id='type-id-39' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1331' column='1' id='type-id-1241'/>
         </member-type>
       </class-decl>
       <function-decl name='move&lt;__gnu_debug::_Safe_iterator_base*&amp;&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1215'/>
-        <return type-id='type-id-1239'/>
+        <parameter type-id='type-id-1216'/>
+        <return type-id='type-id-1240'/>
       </function-decl>
       <function-decl name='move&lt;unsigned int&amp;&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1059'/>
-        <return type-id='type-id-1241'/>
+        <parameter type-id='type-id-1060'/>
+        <return type-id='type-id-1242'/>
       </function-decl>
       <function-decl name='swap&lt;__gnu_debug::_Safe_iterator_base*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1215'/>
-        <parameter type-id='type-id-1215'/>
+        <parameter type-id='type-id-1216'/>
+        <parameter type-id='type-id-1216'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='swap&lt;unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1059'/>
-        <parameter type-id='type-id-1059'/>
+        <parameter type-id='type-id-1060'/>
+        <parameter type-id='type-id-1060'/>
         <return type-id='type-id-5'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_debug'>
-      <enum-decl name='_Debug_msg_id' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='55' column='1' id='type-id-1245'>
+      <enum-decl name='_Debug_msg_id' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='55' column='1' id='type-id-1246'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='__msg_valid_range' value='0'/>
         <enumerator name='__msg_insert_singular' value='1'/>
@@ -17672,9 +17678,9 @@ 
         <enumerator name='__msg_local_iter_compare_bad' value='45'/>
         <enumerator name='__msg_non_empty_range' value='46'/>
       </enum-decl>
-      <class-decl name='_Error_formatter' size-in-bits='4480' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='115' column='1' id='type-id-1209'>
+      <class-decl name='_Error_formatter' size-in-bits='4480' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='115' column='1' id='type-id-1210'>
         <member-type access='private'>
-          <enum-decl name='_Constness' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='118' column='1' id='type-id-1246'>
+          <enum-decl name='_Constness' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='118' column='1' id='type-id-1247'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='__unknown_constness' value='0'/>
             <enumerator name='__const_iterator' value='1'/>
@@ -17683,7 +17689,7 @@ 
           </enum-decl>
         </member-type>
         <member-type access='private'>
-          <enum-decl name='_Iterator_state' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='127' column='1' id='type-id-1247'>
+          <enum-decl name='_Iterator_state' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='127' column='1' id='type-id-1248'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='__unknown_state' value='0'/>
             <enumerator name='__singular' value='1'/>
@@ -17695,9 +17701,9 @@ 
           </enum-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Parameter' size-in-bits='448' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='143' column='1' id='type-id-1204'>
+          <class-decl name='_Parameter' size-in-bits='448' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='143' column='1' id='type-id-1205'>
             <member-type access='public'>
-              <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='146' column='1' id='type-id-1248'>
+              <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='146' column='1' id='type-id-1249'>
                 <underlying-type type-id='type-id-37'/>
                 <enumerator name='__unused_param' value='0'/>
                 <enumerator name='__iterator' value='1'/>
@@ -17707,9 +17713,9 @@ 
               </enum-decl>
             </member-type>
             <member-type access='public'>
-              <union-decl name='__anonymous_union__' size-in-bits='384' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='155' column='1' id='type-id-1249'>
+              <union-decl name='__anonymous_union__' size-in-bits='384' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='155' column='1' id='type-id-1250'>
                 <member-type access='public'>
-                  <class-decl name='__anonymous_struct__' size-in-bits='384' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='158' column='1' id='type-id-1250'>
+                  <class-decl name='__anonymous_struct__' size-in-bits='384' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='158' column='1' id='type-id-1251'>
                     <data-member access='public' layout-offset-in-bits='0'>
                       <var-decl name='_M_name' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='159' column='1'/>
                     </data-member>
@@ -17720,10 +17726,10 @@ 
                       <var-decl name='_M_type' type-id='type-id-38' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='161' column='1'/>
                     </data-member>
                     <data-member access='public' layout-offset-in-bits='192'>
-                      <var-decl name='_M_constness' type-id='type-id-1246' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='162' column='1'/>
+                      <var-decl name='_M_constness' type-id='type-id-1247' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='162' column='1'/>
                     </data-member>
                     <data-member access='public' layout-offset-in-bits='224'>
-                      <var-decl name='_M_state' type-id='type-id-1247' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='163' column='1'/>
+                      <var-decl name='_M_state' type-id='type-id-1248' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='163' column='1'/>
                     </data-member>
                     <data-member access='public' layout-offset-in-bits='256'>
                       <var-decl name='_M_sequence' type-id='type-id-34' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='164' column='1'/>
@@ -17734,7 +17740,7 @@ 
                   </class-decl>
                 </member-type>
                 <member-type access='public'>
-                  <class-decl name='__anonymous_struct__1' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='170' column='1' id='type-id-1251'>
+                  <class-decl name='__anonymous_struct__1' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='170' column='1' id='type-id-1252'>
                     <data-member access='public' layout-offset-in-bits='0'>
                       <var-decl name='_M_name' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='171' column='1'/>
                     </data-member>
@@ -17747,7 +17753,7 @@ 
                   </class-decl>
                 </member-type>
                 <member-type access='public'>
-                  <class-decl name='__anonymous_struct__2' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='178' column='1' id='type-id-1252'>
+                  <class-decl name='__anonymous_struct__2' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='178' column='1' id='type-id-1253'>
                     <data-member access='public' layout-offset-in-bits='0'>
                       <var-decl name='_M_name' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='179' column='1'/>
                     </data-member>
@@ -17757,7 +17763,7 @@ 
                   </class-decl>
                 </member-type>
                 <member-type access='public'>
-                  <class-decl name='__anonymous_struct__3' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='185' column='1' id='type-id-1253'>
+                  <class-decl name='__anonymous_struct__3' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='185' column='1' id='type-id-1254'>
                     <data-member access='public' layout-offset-in-bits='0'>
                       <var-decl name='_M_name' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='186' column='1'/>
                     </data-member>
@@ -17767,34 +17773,34 @@ 
                   </class-decl>
                 </member-type>
                 <data-member access='public'>
-                  <var-decl name='_M_iterator' type-id='type-id-1250' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='166' column='1'/>
+                  <var-decl name='_M_iterator' type-id='type-id-1251' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='166' column='1'/>
                 </data-member>
                 <data-member access='public'>
-                  <var-decl name='_M_sequence' type-id='type-id-1251' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='174' column='1'/>
+                  <var-decl name='_M_sequence' type-id='type-id-1252' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='174' column='1'/>
                 </data-member>
                 <data-member access='public'>
-                  <var-decl name='_M_integer' type-id='type-id-1252' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='181' column='1'/>
+                  <var-decl name='_M_integer' type-id='type-id-1253' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='181' column='1'/>
                 </data-member>
                 <data-member access='public'>
-                  <var-decl name='_M_string' type-id='type-id-1253' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='188' column='1'/>
+                  <var-decl name='_M_string' type-id='type-id-1254' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='188' column='1'/>
                 </data-member>
               </union-decl>
             </member-type>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='_M_kind' type-id='type-id-1248' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='152' column='1'/>
+              <var-decl name='_M_kind' type-id='type-id-1249' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='152' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
-              <var-decl name='_M_variant' type-id='type-id-1249' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='189' column='1'/>
+              <var-decl name='_M_variant' type-id='type-id-1250' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='189' column='1'/>
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Parameter' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1211' is-artificial='yes'/>
+                <parameter type-id='type-id-1212' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Parameter' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='193' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1211' is-artificial='yes'/>
+                <parameter type-id='type-id-1212' is-artificial='yes'/>
                 <parameter type-id='type-id-20'/>
                 <parameter type-id='type-id-4'/>
                 <return type-id='type-id-5'/>
@@ -17802,7 +17808,7 @@ 
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Parameter' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='200' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1211' is-artificial='yes'/>
+                <parameter type-id='type-id-1212' is-artificial='yes'/>
                 <parameter type-id='type-id-4'/>
                 <parameter type-id='type-id-4'/>
                 <return type-id='type-id-5'/>
@@ -17810,23 +17816,23 @@ 
             </member-function>
             <member-function access='public' const='yes'>
               <function-decl name='_M_print_field' mangled-name='_ZNK11__gnu_debug16_Error_formatter10_Parameter14_M_print_fieldEPKS0_PKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug16_Error_formatter10_Parameter14_M_print_fieldEPKS0_PKc@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-1229' is-artificial='yes'/>
-                <parameter type-id='type-id-1227'/>
+                <parameter type-id='type-id-1230' is-artificial='yes'/>
+                <parameter type-id='type-id-1228'/>
                 <parameter type-id='type-id-4'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public' const='yes'>
               <function-decl name='_M_print_description' mangled-name='_ZNK11__gnu_debug16_Error_formatter10_Parameter20_M_print_descriptionEPKS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug16_Error_formatter10_Parameter20_M_print_descriptionEPKS0_@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-1229' is-artificial='yes'/>
-                <parameter type-id='type-id-1227'/>
+                <parameter type-id='type-id-1230' is-artificial='yes'/>
+                <parameter type-id='type-id-1228'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='445' column='1' id='type-id-1254'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='445' column='1' id='type-id-1255'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='_M_indent' value='4'/>
           </enum-decl>
@@ -17838,7 +17844,7 @@ 
           <var-decl name='_M_line' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='440' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_parameters' type-id='type-id-1205' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='441' column='1'/>
+          <var-decl name='_M_parameters' type-id='type-id-1206' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='441' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='4160'>
           <var-decl name='_M_num_parameters' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='442' column='1'/>
@@ -17860,7 +17866,7 @@ 
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='_Error_formatter' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='419' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1210' is-artificial='yes'/>
+            <parameter type-id='type-id-1211' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -17868,34 +17874,34 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_message' mangled-name='_ZNK11__gnu_debug16_Error_formatter10_M_messageEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-1226'/>
+            <return type-id='type-id-1227'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_message' mangled-name='_ZNK11__gnu_debug16_Error_formatter10_M_messageENS_13_Debug_msg_idE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='413' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug16_Error_formatter10_M_messageENS_13_Debug_msg_idE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
-            <parameter type-id='type-id-1245'/>
-            <return type-id='type-id-1226'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
+            <parameter type-id='type-id-1246'/>
+            <return type-id='type-id-1227'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_print_word' mangled-name='_ZNK11__gnu_debug16_Error_formatter13_M_print_wordEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='429' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug16_Error_formatter13_M_print_wordEPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_get_max_length' mangled-name='_ZNK11__gnu_debug16_Error_formatter17_M_get_max_lengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug16_Error_formatter17_M_get_max_lengthEv@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_format_word&lt;const void*&gt;' mangled-name='_ZNK11__gnu_debug16_Error_formatter14_M_format_wordIPKvEEvPciPKcT_' filepath='../../../.././libstdc++-v3/src/c++11/debug.cc' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-4'/>
@@ -17905,7 +17911,7 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_format_word&lt;const char*&gt;' mangled-name='_ZNK11__gnu_debug16_Error_formatter14_M_format_wordIPKcEEvPciS3_T_' filepath='../../../.././libstdc++-v3/src/c++11/debug.cc' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-4'/>
@@ -17915,7 +17921,7 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_format_word&lt;long unsigned int&gt;' mangled-name='_ZNK11__gnu_debug16_Error_formatter14_M_format_wordImEEvPciPKcT_' filepath='../../../.././libstdc++-v3/src/c++11/debug.cc' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-4'/>
@@ -17925,7 +17931,7 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_format_word&lt;long int&gt;' mangled-name='_ZNK11__gnu_debug16_Error_formatter14_M_format_wordIlEEvPciPKcT_' filepath='../../../.././libstdc++-v3/src/c++11/debug.cc' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-4'/>
@@ -17935,351 +17941,351 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_print_string' mangled-name='_ZNK11__gnu_debug16_Error_formatter15_M_print_stringEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='432' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug16_Error_formatter15_M_print_stringEPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_error' mangled-name='_ZNK11__gnu_debug16_Error_formatter8_M_errorEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/formatter.h' line='416' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug16_Error_formatter8_M_errorEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1227' is-artificial='yes'/>
+            <parameter type-id='type-id-1228' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Safe_iterator_base' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='51' column='1' id='type-id-1212'>
+      <class-decl name='_Safe_iterator_base' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='51' column='1' id='type-id-1213'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sequence' type-id='type-id-1221' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='56' column='1'/>
+          <var-decl name='_M_sequence' type-id='type-id-1222' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='56' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
           <var-decl name='_M_version' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='65' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_prior' type-id='type-id-1214' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='69' column='1'/>
+          <var-decl name='_M_prior' type-id='type-id-1215' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='69' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_next' type-id='type-id-1214' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='73' column='1'/>
+          <var-decl name='_M_next' type-id='type-id-1215' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='73' column='1'/>
         </data-member>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
-            <parameter type-id='type-id-1237'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
+            <parameter type-id='type-id-1238'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
-            <parameter type-id='type-id-1231'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
+            <parameter type-id='type-id-1232'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
-            <parameter type-id='type-id-1231'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
+            <parameter type-id='type-id-1232'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes'>
           <function-decl name='~_Safe_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_unlink' mangled-name='_ZN11__gnu_debug19_Safe_iterator_base9_M_unlinkEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_reset' mangled-name='_ZN11__gnu_debug19_Safe_iterator_base8_M_resetEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach_single' mangled-name='_ZN11__gnu_debug19_Safe_iterator_base16_M_detach_singleEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_iterator_base16_M_detach_singleEv@@GLIBCXX_3.4.9'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach_single' mangled-name='_ZN11__gnu_debug19_Safe_iterator_base16_M_attach_singleEPNS_19_Safe_sequence_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_iterator_base16_M_attach_singleEPNS_19_Safe_sequence_baseEb@@GLIBCXX_3.4.9'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
-            <parameter type-id='type-id-1221'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
+            <parameter type-id='type-id-1222'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach' mangled-name='_ZN11__gnu_debug19_Safe_iterator_base9_M_detachEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_iterator_base9_M_detachEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach' mangled-name='_ZN11__gnu_debug19_Safe_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
-            <parameter type-id='type-id-1221'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
+            <parameter type-id='type-id-1222'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_singular' mangled-name='_ZNK11__gnu_debug19_Safe_iterator_base11_M_singularEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug19_Safe_iterator_base11_M_singularEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1232' is-artificial='yes'/>
+            <parameter type-id='type-id-1233' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_can_compare' mangled-name='_ZNK11__gnu_debug19_Safe_iterator_base14_M_can_compareERKS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK11__gnu_debug19_Safe_iterator_base14_M_can_compareERKS0_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1232' is-artificial='yes'/>
-            <parameter type-id='type-id-1231'/>
+            <parameter type-id='type-id-1233' is-artificial='yes'/>
+            <parameter type-id='type-id-1232'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_get_mutex' mangled-name='_ZN11__gnu_debug19_Safe_iterator_base12_M_get_mutexEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_iterator_base12_M_get_mutexEv@@GLIBCXX_3.4.9'>
-            <parameter type-id='type-id-1214' is-artificial='yes'/>
+            <parameter type-id='type-id-1215' is-artificial='yes'/>
             <return type-id='type-id-62'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Safe_sequence_base' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='178' column='1' id='type-id-1219'>
+      <class-decl name='_Safe_sequence_base' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='178' column='1' id='type-id-1220'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_iterators' type-id='type-id-1214' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='182' column='1'/>
+          <var-decl name='_M_iterators' type-id='type-id-1215' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='182' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_const_iterators' type-id='type-id-1214' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='185' column='1'/>
+          <var-decl name='_M_const_iterators' type-id='type-id-1215' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='185' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
           <var-decl name='_M_version' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='188' column='1'/>
         </data-member>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_sequence_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes'>
           <function-decl name='~_Safe_sequence_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_get_mutex' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base12_M_get_mutexEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_sequence_base12_M_get_mutexEv@@GLIBCXX_3.4.9'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
             <return type-id='type-id-62'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_revalidate_singular' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base22_M_revalidate_singularEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_sequence_base22_M_revalidate_singularEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_swap' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base7_M_swapERS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_sequence_base7_M_swapERS0_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
-            <parameter type-id='type-id-1220'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
+            <parameter type-id='type-id-1221'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach_single' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base16_M_attach_singleEPNS_19_Safe_iterator_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base9_M_attachEPNS_19_Safe_iterator_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach_single' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base16_M_detach_singleEPNS_19_Safe_iterator_baseE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base9_M_detachEPNS_19_Safe_iterator_baseE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_detach_all' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base13_M_detach_allEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_sequence_base13_M_detach_allEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_detach_singular' mangled-name='_ZN11__gnu_debug19_Safe_sequence_base18_M_detach_singularEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_base.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug19_Safe_sequence_base18_M_detach_singularEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1221' is-artificial='yes'/>
+            <parameter type-id='type-id-1222' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Safe_local_iterator_base' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='50' column='1' id='type-id-1216'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1212'/>
+      <class-decl name='_Safe_local_iterator_base' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='50' column='1' id='type-id-1217'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1213'/>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_local_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_local_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
-            <parameter type-id='type-id-1237'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
+            <parameter type-id='type-id-1238'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_local_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
-            <parameter type-id='type-id-1234'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
+            <parameter type-id='type-id-1235'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_local_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
-            <parameter type-id='type-id-1234'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
+            <parameter type-id='type-id-1235'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes'>
           <function-decl name='~_Safe_local_iterator_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_get_container' mangled-name='_ZNK11__gnu_debug25_Safe_local_iterator_base16_M_get_containerEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1235' is-artificial='yes'/>
-            <return type-id='type-id-1224'/>
+            <parameter type-id='type-id-1236' is-artificial='yes'/>
+            <return type-id='type-id-1225'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach_single' mangled-name='_ZN11__gnu_debug25_Safe_local_iterator_base16_M_detach_singleEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach_single' mangled-name='_ZN11__gnu_debug25_Safe_local_iterator_base16_M_attach_singleEPNS_19_Safe_sequence_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
-            <parameter type-id='type-id-1221'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
+            <parameter type-id='type-id-1222'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach' mangled-name='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_detachEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_detachEv@@GLIBCXX_3.4.17'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach' mangled-name='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb@@GLIBCXX_3.4.17'>
-            <parameter type-id='type-id-1218' is-artificial='yes'/>
-            <parameter type-id='type-id-1221'/>
+            <parameter type-id='type-id-1219' is-artificial='yes'/>
+            <parameter type-id='type-id-1222'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Safe_unordered_container_base' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='123' column='1' id='type-id-1222'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1219'/>
+      <class-decl name='_Safe_unordered_container_base' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='123' column='1' id='type-id-1223'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1220'/>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_local_iterators' type-id='type-id-1214' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='128' column='1'/>
+          <var-decl name='_M_local_iterators' type-id='type-id-1215' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='128' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='256'>
-          <var-decl name='_M_const_local_iterators' type-id='type-id-1214' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='131' column='1'/>
+          <var-decl name='_M_const_local_iterators' type-id='type-id-1215' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='131' column='1'/>
         </data-member>
         <member-function access='protected' constructor='yes'>
           <function-decl name='_Safe_unordered_container_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes'>
           <function-decl name='~_Safe_unordered_container_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_detach_all' mangled-name='_ZN11__gnu_debug30_Safe_unordered_container_base13_M_detach_allEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug30_Safe_unordered_container_base13_M_detach_allEv@@GLIBCXX_3.4.17'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_swap' mangled-name='_ZN11__gnu_debug30_Safe_unordered_container_base7_M_swapERS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN11__gnu_debug30_Safe_unordered_container_base7_M_swapERS0_@@GLIBCXX_3.4.17'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
-            <parameter type-id='type-id-1223'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
+            <parameter type-id='type-id-1224'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach_local_single' mangled-name='_ZN11__gnu_debug30_Safe_unordered_container_base22_M_attach_local_singleEPNS_19_Safe_iterator_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_attach_local' mangled-name='_ZN11__gnu_debug30_Safe_unordered_container_base15_M_attach_localEPNS_19_Safe_iterator_baseEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach_local_single' mangled-name='_ZN11__gnu_debug30_Safe_unordered_container_base22_M_detach_local_singleEPNS_19_Safe_iterator_baseE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_detach_local' mangled-name='_ZN11__gnu_debug30_Safe_unordered_container_base15_M_detach_localEPNS_19_Safe_iterator_baseE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/debug/safe_unordered_base.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1224' is-artificial='yes'/>
-            <parameter type-id='type-id-1214'/>
+            <parameter type-id='type-id-1225' is-artificial='yes'/>
+            <parameter type-id='type-id-1215'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <var-decl name='_S_debug_messages' type-id='type-id-1207' mangled-name='_ZN11__gnu_debug17_S_debug_messagesE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/debug.cc' line='105' column='1'/>
+      <var-decl name='_S_debug_messages' type-id='type-id-1208' mangled-name='_ZN11__gnu_debug17_S_debug_messagesE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/debug.cc' line='105' column='1'/>
     </namespace-decl>
     <function-decl name='__assert_fail' filepath='/usr/include/assert.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-4'/>
@@ -18305,56 +18311,56 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/fstream-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-955' const='yes' id='type-id-1255'/>
-    <pointer-type-def type-id='type-id-1255' size-in-bits='64' id='type-id-960'/>
-    <qualified-type-def type-id='type-id-946' const='yes' id='type-id-1256'/>
-    <qualified-type-def type-id='type-id-947' const='yes' id='type-id-1257'/>
-    <qualified-type-def type-id='type-id-975' const='yes' id='type-id-1258'/>
-    <pointer-type-def type-id='type-id-1258' size-in-bits='64' id='type-id-978'/>
-    <qualified-type-def type-id='type-id-967' const='yes' id='type-id-1259'/>
-    <qualified-type-def type-id='type-id-968' const='yes' id='type-id-1260'/>
-    <qualified-type-def type-id='type-id-1261' const='yes' id='type-id-1262'/>
-    <pointer-type-def type-id='type-id-1262' size-in-bits='64' id='type-id-1263'/>
-    <qualified-type-def type-id='type-id-1264' const='yes' id='type-id-1265'/>
-    <pointer-type-def type-id='type-id-1265' size-in-bits='64' id='type-id-1266'/>
-    <qualified-type-def type-id='type-id-1267' const='yes' id='type-id-1268'/>
-    <pointer-type-def type-id='type-id-1268' size-in-bits='64' id='type-id-1269'/>
-    <qualified-type-def type-id='type-id-1270' const='yes' id='type-id-1271'/>
-    <pointer-type-def type-id='type-id-1271' size-in-bits='64' id='type-id-1272'/>
-    <qualified-type-def type-id='type-id-1273' const='yes' id='type-id-1274'/>
-    <pointer-type-def type-id='type-id-1274' size-in-bits='64' id='type-id-1275'/>
-    <qualified-type-def type-id='type-id-1276' const='yes' id='type-id-1277'/>
-    <pointer-type-def type-id='type-id-1277' size-in-bits='64' id='type-id-1278'/>
+    <qualified-type-def type-id='type-id-955' const='yes' id='type-id-1256'/>
+    <pointer-type-def type-id='type-id-1256' size-in-bits='64' id='type-id-960'/>
+    <qualified-type-def type-id='type-id-946' const='yes' id='type-id-1257'/>
+    <qualified-type-def type-id='type-id-947' const='yes' id='type-id-1258'/>
+    <qualified-type-def type-id='type-id-975' const='yes' id='type-id-1259'/>
+    <pointer-type-def type-id='type-id-1259' size-in-bits='64' id='type-id-978'/>
+    <qualified-type-def type-id='type-id-967' const='yes' id='type-id-1260'/>
+    <qualified-type-def type-id='type-id-968' const='yes' id='type-id-1261'/>
+    <qualified-type-def type-id='type-id-1262' const='yes' id='type-id-1263'/>
+    <pointer-type-def type-id='type-id-1263' size-in-bits='64' id='type-id-1264'/>
+    <qualified-type-def type-id='type-id-1265' const='yes' id='type-id-1266'/>
+    <pointer-type-def type-id='type-id-1266' size-in-bits='64' id='type-id-1267'/>
+    <qualified-type-def type-id='type-id-1268' const='yes' id='type-id-1269'/>
+    <pointer-type-def type-id='type-id-1269' size-in-bits='64' id='type-id-1270'/>
+    <qualified-type-def type-id='type-id-1271' const='yes' id='type-id-1272'/>
+    <pointer-type-def type-id='type-id-1272' size-in-bits='64' id='type-id-1273'/>
+    <qualified-type-def type-id='type-id-1274' const='yes' id='type-id-1275'/>
+    <pointer-type-def type-id='type-id-1275' size-in-bits='64' id='type-id-1276'/>
+    <qualified-type-def type-id='type-id-1277' const='yes' id='type-id-1278'/>
+    <pointer-type-def type-id='type-id-1278' size-in-bits='64' id='type-id-1279'/>
     <reference-type-def kind='lvalue' type-id='type-id-954' size-in-bits='64' id='type-id-962'/>
     <pointer-type-def type-id='type-id-950' size-in-bits='64' id='type-id-966'/>
     <pointer-type-def type-id='type-id-946' size-in-bits='64' id='type-id-959'/>
     <reference-type-def kind='lvalue' type-id='type-id-974' size-in-bits='64' id='type-id-980'/>
     <pointer-type-def type-id='type-id-971' size-in-bits='64' id='type-id-982'/>
     <pointer-type-def type-id='type-id-967' size-in-bits='64' id='type-id-977'/>
-    <pointer-type-def type-id='type-id-1261' size-in-bits='64' id='type-id-1279'/>
-    <pointer-type-def type-id='type-id-1280' size-in-bits='64' id='type-id-1281'/>
-    <pointer-type-def type-id='type-id-1264' size-in-bits='64' id='type-id-1282'/>
-    <pointer-type-def type-id='type-id-1283' size-in-bits='64' id='type-id-1284'/>
-    <pointer-type-def type-id='type-id-1267' size-in-bits='64' id='type-id-1285'/>
-    <pointer-type-def type-id='type-id-1286' size-in-bits='64' id='type-id-1287'/>
-    <pointer-type-def type-id='type-id-1270' size-in-bits='64' id='type-id-1288'/>
-    <pointer-type-def type-id='type-id-1289' size-in-bits='64' id='type-id-1290'/>
-    <pointer-type-def type-id='type-id-1273' size-in-bits='64' id='type-id-1291'/>
-    <pointer-type-def type-id='type-id-1292' size-in-bits='64' id='type-id-1293'/>
-    <pointer-type-def type-id='type-id-1276' size-in-bits='64' id='type-id-1294'/>
-    <pointer-type-def type-id='type-id-1295' size-in-bits='64' id='type-id-1296'/>
+    <pointer-type-def type-id='type-id-1262' size-in-bits='64' id='type-id-1280'/>
+    <pointer-type-def type-id='type-id-1281' size-in-bits='64' id='type-id-1282'/>
+    <pointer-type-def type-id='type-id-1265' size-in-bits='64' id='type-id-1283'/>
+    <pointer-type-def type-id='type-id-1284' size-in-bits='64' id='type-id-1285'/>
+    <pointer-type-def type-id='type-id-1268' size-in-bits='64' id='type-id-1286'/>
+    <pointer-type-def type-id='type-id-1287' size-in-bits='64' id='type-id-1288'/>
+    <pointer-type-def type-id='type-id-1271' size-in-bits='64' id='type-id-1289'/>
+    <pointer-type-def type-id='type-id-1290' size-in-bits='64' id='type-id-1291'/>
+    <pointer-type-def type-id='type-id-1274' size-in-bits='64' id='type-id-1292'/>
+    <pointer-type-def type-id='type-id-1293' size-in-bits='64' id='type-id-1294'/>
+    <pointer-type-def type-id='type-id-1277' size-in-bits='64' id='type-id-1295'/>
+    <pointer-type-def type-id='type-id-1296' size-in-bits='64' id='type-id-1297'/>
     <namespace-decl name='std'>
-      <class-decl name='basic_ifstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4160' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='420' column='1' id='type-id-1267'>
+      <class-decl name='basic_ifstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4160' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='420' column='1' id='type-id-1268'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-796'/>
         <member-type access='private'>
-          <typedef-decl name='__filebuf_type' type-id='type-id-688' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='431' column='1' id='type-id-1286'/>
+          <typedef-decl name='__filebuf_type' type-id='type-id-688' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='431' column='1' id='type-id-1287'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_filebuf' type-id='type-id-1286' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='435' column='1'/>
+          <var-decl name='_M_filebuf' type-id='type-id-1287' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='435' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='446' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18362,7 +18368,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='460' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18372,7 +18378,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='476' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18382,7 +18388,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='531' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18390,7 +18396,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18398,7 +18404,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='446' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18406,7 +18412,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='446' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18414,7 +18420,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18424,7 +18430,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18434,7 +18440,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18444,7 +18450,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18454,31 +18460,31 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1269' is-artificial='yes'/>
-            <return type-id='type-id-1287'/>
+            <parameter type-id='type-id-1270' is-artificial='yes'/>
+            <return type-id='type-id-1288'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='is_open' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='510' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is_open' mangled-name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='516' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1269' is-artificial='yes'/>
+            <parameter type-id='type-id-1270' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='close' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE5closeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE5closeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18486,7 +18492,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18494,7 +18500,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18502,24 +18508,24 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1285' is-artificial='yes'/>
+            <parameter type-id='type-id-1286' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_ifstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='4160' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='420' column='1' id='type-id-1270'>
+      <class-decl name='basic_ifstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='4160' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='420' column='1' id='type-id-1271'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-802'/>
         <member-type access='private'>
-          <typedef-decl name='__filebuf_type' type-id='type-id-691' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='431' column='1' id='type-id-1289'/>
+          <typedef-decl name='__filebuf_type' type-id='type-id-691' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='431' column='1' id='type-id-1290'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_filebuf' type-id='type-id-1289' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='435' column='1'/>
+          <var-decl name='_M_filebuf' type-id='type-id-1290' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='435' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='446' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18527,7 +18533,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='460' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18537,7 +18543,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='476' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18547,7 +18553,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='531' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18555,7 +18561,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18563,7 +18569,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='446' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18571,7 +18577,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='446' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18579,7 +18585,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18589,7 +18595,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18599,7 +18605,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18609,7 +18615,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18619,31 +18625,31 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1272' is-artificial='yes'/>
-            <return type-id='type-id-1290'/>
+            <parameter type-id='type-id-1273' is-artificial='yes'/>
+            <return type-id='type-id-1291'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='is_open' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='510' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is_open' mangled-name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='516' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1272' is-artificial='yes'/>
+            <parameter type-id='type-id-1273' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='close' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE5closeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE5closeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18651,7 +18657,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18659,7 +18665,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18667,24 +18673,24 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1288' is-artificial='yes'/>
+            <parameter type-id='type-id-1289' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_ofstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4096' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='588' column='1' id='type-id-1273'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1297'/>
+      <class-decl name='basic_ofstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4096' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='588' column='1' id='type-id-1274'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1298'/>
         <member-type access='private'>
-          <typedef-decl name='__filebuf_type' type-id='type-id-688' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='599' column='1' id='type-id-1292'/>
+          <typedef-decl name='__filebuf_type' type-id='type-id-688' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='599' column='1' id='type-id-1293'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_filebuf' type-id='type-id-1292' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='603' column='1'/>
+          <var-decl name='_M_filebuf' type-id='type-id-1293' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='603' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='614' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18692,7 +18698,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='629' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18702,7 +18708,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='647' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18712,7 +18718,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18720,7 +18726,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18728,7 +18734,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='614' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18736,7 +18742,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='614' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18744,7 +18750,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='629' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18754,7 +18760,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='629' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18764,7 +18770,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18774,7 +18780,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18784,31 +18790,31 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='673' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1275' is-artificial='yes'/>
-            <return type-id='type-id-1293'/>
+            <parameter type-id='type-id-1276' is-artificial='yes'/>
+            <return type-id='type-id-1294'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='is_open' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='681' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is_open' mangled-name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='687' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1275' is-artificial='yes'/>
+            <parameter type-id='type-id-1276' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='close' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE5closeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='742' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE5closeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18816,7 +18822,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18824,7 +18830,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18832,24 +18838,24 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1291' is-artificial='yes'/>
+            <parameter type-id='type-id-1292' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_ofstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='4096' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='588' column='1' id='type-id-1276'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1298'/>
+      <class-decl name='basic_ofstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='4096' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='588' column='1' id='type-id-1277'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1299'/>
         <member-type access='private'>
-          <typedef-decl name='__filebuf_type' type-id='type-id-691' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='599' column='1' id='type-id-1295'/>
+          <typedef-decl name='__filebuf_type' type-id='type-id-691' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='599' column='1' id='type-id-1296'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_filebuf' type-id='type-id-1295' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='603' column='1'/>
+          <var-decl name='_M_filebuf' type-id='type-id-1296' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='603' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='614' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18857,7 +18863,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='629' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18867,7 +18873,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='647' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18877,7 +18883,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18885,7 +18891,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -18893,7 +18899,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='614' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18901,7 +18907,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='614' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18909,7 +18915,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='629' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18919,7 +18925,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='629' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -18929,7 +18935,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18939,7 +18945,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -18949,31 +18955,31 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='673' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1278' is-artificial='yes'/>
-            <return type-id='type-id-1296'/>
+            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <return type-id='type-id-1297'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='is_open' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='681' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is_open' mangled-name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='687' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1278' is-artificial='yes'/>
+            <parameter type-id='type-id-1279' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='close' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE5closeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='742' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE5closeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18981,7 +18987,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18989,7 +18995,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -18997,24 +19003,24 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1294' is-artificial='yes'/>
+            <parameter type-id='type-id-1295' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4224' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='761' column='1' id='type-id-1261'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1299'/>
+      <class-decl name='basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4224' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='761' column='1' id='type-id-1262'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1300'/>
         <member-type access='private'>
-          <typedef-decl name='__filebuf_type' type-id='type-id-688' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='772' column='1' id='type-id-1280'/>
+          <typedef-decl name='__filebuf_type' type-id='type-id-688' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='772' column='1' id='type-id-1281'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_filebuf' type-id='type-id-1280' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='777' column='1'/>
+          <var-decl name='_M_filebuf' type-id='type-id-1281' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='777' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='788' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19022,7 +19028,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='801' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -19032,7 +19038,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='816' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -19042,7 +19048,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -19050,7 +19056,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='892' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -19058,7 +19064,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19066,7 +19072,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19074,7 +19080,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -19084,7 +19090,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -19094,7 +19100,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -19104,7 +19110,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -19114,31 +19120,31 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1263' is-artificial='yes'/>
-            <return type-id='type-id-1281'/>
+            <parameter type-id='type-id-1264' is-artificial='yes'/>
+            <return type-id='type-id-1282'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='is_open' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is_open' mangled-name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1263' is-artificial='yes'/>
+            <parameter type-id='type-id-1264' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='close' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE5closeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEE5closeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19146,7 +19152,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19154,7 +19160,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19162,24 +19168,24 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' mangled-name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIcSt11char_traitsIcEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1279' is-artificial='yes'/>
+            <parameter type-id='type-id-1280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_fstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='4224' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='761' column='1' id='type-id-1264'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1300'/>
+      <class-decl name='basic_fstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='4224' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='761' column='1' id='type-id-1265'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1301'/>
         <member-type access='private'>
-          <typedef-decl name='__filebuf_type' type-id='type-id-691' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='772' column='1' id='type-id-1283'/>
+          <typedef-decl name='__filebuf_type' type-id='type-id-691' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='772' column='1' id='type-id-1284'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_filebuf' type-id='type-id-1283' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='777' column='1'/>
+          <var-decl name='_M_filebuf' type-id='type-id-1284' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='777' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='788' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19187,7 +19193,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='801' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -19197,7 +19203,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='816' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -19207,7 +19213,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -19215,7 +19221,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='892' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
@@ -19223,7 +19229,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19231,7 +19237,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19239,7 +19245,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -19249,7 +19255,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='801' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -19259,7 +19265,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -19269,7 +19275,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4.13'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
@@ -19279,31 +19285,31 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1266' is-artificial='yes'/>
-            <return type-id='type-id-1284'/>
+            <parameter type-id='type-id-1267' is-artificial='yes'/>
+            <return type-id='type-id-1285'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='is_open' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is_open' mangled-name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1266' is-artificial='yes'/>
+            <parameter type-id='type-id-1267' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='close' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE5closeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEE5closeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19311,7 +19317,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19319,7 +19325,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19327,7 +19333,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_fstream' mangled-name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/fstream' line='831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_fstreamIwSt11char_traitsIwEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1282' is-artificial='yes'/>
+            <parameter type-id='type-id-1283' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -19335,644 +19341,644 @@ 
         </member-function>
       </class-decl>
       <function-decl name='__check_facet&lt;std::codecvt&lt;char, char, __mbstate_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1301'/>
-        <return type-id='type-id-1302'/>
+        <parameter type-id='type-id-1302'/>
+        <return type-id='type-id-1303'/>
       </function-decl>
       <function-decl name='__check_facet&lt;std::codecvt&lt;wchar_t, char, __mbstate_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1303'/>
-        <return type-id='type-id-1304'/>
+        <parameter type-id='type-id-1304'/>
+        <return type-id='type-id-1305'/>
       </function-decl>
       <function-decl name='operator!=&lt;__mbstate_t&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1305'/>
-        <parameter type-id='type-id-1305'/>
+        <parameter type-id='type-id-1306'/>
+        <parameter type-id='type-id-1306'/>
         <return type-id='type-id-40'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/functexcept.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='128' id='type-id-1306'>
-      <subrange length='16' type-id='type-id-176' id='type-id-1307'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='128' id='type-id-1307'>
+      <subrange length='16' type-id='type-id-176' id='type-id-1308'/>
     </array-type-def>
-    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-1308'>
+    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-1309'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='__pfn' type-id='type-id-1309' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1657' column='1'/>
+        <var-decl name='__pfn' type-id='type-id-1310' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1657' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='__delta' type-id='type-id-20' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1657' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-1310' size-in-bits='64' id='type-id-1311'/>
-    <pointer-type-def type-id='type-id-1312' size-in-bits='64' id='type-id-1313'/>
-    <pointer-type-def type-id='type-id-1314' size-in-bits='64' id='type-id-1315'/>
-    <pointer-type-def type-id='type-id-1316' size-in-bits='64' id='type-id-1317'/>
-    <pointer-type-def type-id='type-id-1318' size-in-bits='64' id='type-id-1319'/>
-    <qualified-type-def type-id='type-id-1310' const='yes' id='type-id-1320'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1320' size-in-bits='64' id='type-id-1321'/>
-    <pointer-type-def type-id='type-id-1320' size-in-bits='64' id='type-id-1322'/>
-    <qualified-type-def type-id='type-id-1312' const='yes' id='type-id-1323'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1323' size-in-bits='64' id='type-id-1324'/>
-    <pointer-type-def type-id='type-id-1323' size-in-bits='64' id='type-id-1325'/>
-    <qualified-type-def type-id='type-id-1314' const='yes' id='type-id-1326'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1326' size-in-bits='64' id='type-id-1327'/>
-    <pointer-type-def type-id='type-id-1326' size-in-bits='64' id='type-id-1328'/>
-    <qualified-type-def type-id='type-id-1329' const='yes' id='type-id-1330'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1330' size-in-bits='64' id='type-id-1331'/>
-    <pointer-type-def type-id='type-id-1330' size-in-bits='64' id='type-id-1332'/>
-    <qualified-type-def type-id='type-id-1333' const='yes' id='type-id-1334'/>
-    <pointer-type-def type-id='type-id-1334' size-in-bits='64' id='type-id-1335'/>
-    <qualified-type-def type-id='type-id-1336' const='yes' id='type-id-1337'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1337' size-in-bits='64' id='type-id-1338'/>
-    <pointer-type-def type-id='type-id-1337' size-in-bits='64' id='type-id-1339'/>
-    <qualified-type-def type-id='type-id-1340' const='yes' id='type-id-1341'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1341' size-in-bits='64' id='type-id-1342'/>
-    <qualified-type-def type-id='type-id-1343' const='yes' id='type-id-1344'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1344' size-in-bits='64' id='type-id-1345'/>
-    <qualified-type-def type-id='type-id-1346' const='yes' id='type-id-1347'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1347' size-in-bits='64' id='type-id-1348'/>
-    <qualified-type-def type-id='type-id-1349' const='yes' id='type-id-1350'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1350' size-in-bits='64' id='type-id-1351'/>
-    <qualified-type-def type-id='type-id-1352' const='yes' id='type-id-1353'/>
-    <pointer-type-def type-id='type-id-1353' size-in-bits='64' id='type-id-1354'/>
-    <qualified-type-def type-id='type-id-1355' const='yes' id='type-id-1356'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1356' size-in-bits='64' id='type-id-1357'/>
-    <qualified-type-def type-id='type-id-1358' const='yes' id='type-id-1359'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1359' size-in-bits='64' id='type-id-1360'/>
-    <qualified-type-def type-id='type-id-1361' const='yes' id='type-id-1362'/>
-    <pointer-type-def type-id='type-id-1362' size-in-bits='64' id='type-id-1363'/>
-    <qualified-type-def type-id='type-id-1364' const='yes' id='type-id-1365'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1365' size-in-bits='64' id='type-id-1366'/>
-    <qualified-type-def type-id='type-id-1367' const='yes' id='type-id-1368'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1368' size-in-bits='64' id='type-id-1369'/>
-    <pointer-type-def type-id='type-id-1368' size-in-bits='64' id='type-id-1370'/>
-    <qualified-type-def type-id='type-id-1371' const='yes' id='type-id-1372'/>
-    <pointer-type-def type-id='type-id-1372' size-in-bits='64' id='type-id-1373'/>
-    <qualified-type-def type-id='type-id-1374' const='yes' id='type-id-1375'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1375' size-in-bits='64' id='type-id-1376'/>
-    <qualified-type-def type-id='type-id-1377' const='yes' id='type-id-1378'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1378' size-in-bits='64' id='type-id-1379'/>
-    <qualified-type-def type-id='type-id-1380' const='yes' id='type-id-1381'/>
-    <pointer-type-def type-id='type-id-1381' size-in-bits='64' id='type-id-1382'/>
-    <qualified-type-def type-id='type-id-1383' const='yes' id='type-id-1384'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1384' size-in-bits='64' id='type-id-1385'/>
-    <qualified-type-def type-id='type-id-1386' const='yes' id='type-id-1387'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1387' size-in-bits='64' id='type-id-1388'/>
-    <pointer-type-def type-id='type-id-1387' size-in-bits='64' id='type-id-1389'/>
-    <qualified-type-def type-id='type-id-1390' const='yes' id='type-id-1391'/>
-    <qualified-type-def type-id='type-id-1392' const='yes' id='type-id-1393'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1393' size-in-bits='64' id='type-id-1394'/>
-    <pointer-type-def type-id='type-id-1393' size-in-bits='64' id='type-id-1395'/>
-    <qualified-type-def type-id='type-id-1396' const='yes' id='type-id-1397'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1397' size-in-bits='64' id='type-id-1398'/>
-    <qualified-type-def type-id='type-id-1399' const='yes' id='type-id-1400'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1400' size-in-bits='64' id='type-id-1401'/>
-    <qualified-type-def type-id='type-id-1402' const='yes' id='type-id-1403'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1403' size-in-bits='64' id='type-id-1404'/>
-    <qualified-type-def type-id='type-id-1405' const='yes' id='type-id-1406'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1406' size-in-bits='64' id='type-id-1407'/>
-    <qualified-type-def type-id='type-id-1408' const='yes' id='type-id-1409'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1409' size-in-bits='64' id='type-id-1410'/>
-    <pointer-type-def type-id='type-id-1409' size-in-bits='64' id='type-id-1411'/>
-    <qualified-type-def type-id='type-id-1412' const='yes' id='type-id-1413'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1413' size-in-bits='64' id='type-id-1414'/>
-    <pointer-type-def type-id='type-id-1413' size-in-bits='64' id='type-id-1415'/>
-    <qualified-type-def type-id='type-id-1416' const='yes' id='type-id-1417'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1417' size-in-bits='64' id='type-id-1418'/>
-    <pointer-type-def type-id='type-id-1417' size-in-bits='64' id='type-id-1419'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1329' size-in-bits='64' id='type-id-1420'/>
-    <pointer-type-def type-id='type-id-1329' size-in-bits='64' id='type-id-1421'/>
-    <pointer-type-def type-id='type-id-1333' size-in-bits='64' id='type-id-1422'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1336' size-in-bits='64' id='type-id-1423'/>
-    <pointer-type-def type-id='type-id-1336' size-in-bits='64' id='type-id-1424'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1425' size-in-bits='64' id='type-id-1426'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1340' size-in-bits='64' id='type-id-1427'/>
-    <pointer-type-def type-id='type-id-1428' size-in-bits='64' id='type-id-1429'/>
-    <pointer-type-def type-id='type-id-1352' size-in-bits='64' id='type-id-1430'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1355' size-in-bits='64' id='type-id-1431'/>
-    <pointer-type-def type-id='type-id-1361' size-in-bits='64' id='type-id-1432'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1364' size-in-bits='64' id='type-id-1433'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1367' size-in-bits='64' id='type-id-1434'/>
-    <pointer-type-def type-id='type-id-1367' size-in-bits='64' id='type-id-1435'/>
-    <pointer-type-def type-id='type-id-1436' size-in-bits='64' id='type-id-1437'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1371' size-in-bits='64' id='type-id-1438'/>
-    <pointer-type-def type-id='type-id-1371' size-in-bits='64' id='type-id-1439'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1374' size-in-bits='64' id='type-id-1440'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1441' size-in-bits='64' id='type-id-1442'/>
-    <pointer-type-def type-id='type-id-1441' size-in-bits='64' id='type-id-1443'/>
-    <pointer-type-def type-id='type-id-1380' size-in-bits='64' id='type-id-1444'/>
-    <pointer-type-def type-id='type-id-1386' size-in-bits='64' id='type-id-1445'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1446' size-in-bits='64' id='type-id-1447'/>
-    <pointer-type-def type-id='type-id-1448' size-in-bits='64' id='type-id-1449'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1392' size-in-bits='64' id='type-id-1450'/>
-    <pointer-type-def type-id='type-id-1392' size-in-bits='64' id='type-id-1451'/>
-    <pointer-type-def type-id='type-id-1399' size-in-bits='64' id='type-id-1452'/>
-    <pointer-type-def type-id='type-id-1402' size-in-bits='64' id='type-id-1453'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1405' size-in-bits='64' id='type-id-1454'/>
-    <pointer-type-def type-id='type-id-1405' size-in-bits='64' id='type-id-1455'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1408' size-in-bits='64' id='type-id-1456'/>
-    <pointer-type-def type-id='type-id-1408' size-in-bits='64' id='type-id-1457'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1412' size-in-bits='64' id='type-id-1458'/>
-    <pointer-type-def type-id='type-id-1412' size-in-bits='64' id='type-id-1459'/>
-    <pointer-type-def type-id='type-id-1460' size-in-bits='64' id='type-id-1461'/>
-    <pointer-type-def type-id='type-id-1462' size-in-bits='64' id='type-id-1463'/>
-    <pointer-type-def type-id='type-id-1464' size-in-bits='64' id='type-id-1465'/>
-    <pointer-type-def type-id='type-id-1466' size-in-bits='64' id='type-id-1309'/>
+    <pointer-type-def type-id='type-id-1311' size-in-bits='64' id='type-id-1312'/>
+    <pointer-type-def type-id='type-id-1313' size-in-bits='64' id='type-id-1314'/>
+    <pointer-type-def type-id='type-id-1315' size-in-bits='64' id='type-id-1316'/>
+    <pointer-type-def type-id='type-id-1317' size-in-bits='64' id='type-id-1318'/>
+    <pointer-type-def type-id='type-id-1319' size-in-bits='64' id='type-id-1320'/>
+    <qualified-type-def type-id='type-id-1311' const='yes' id='type-id-1321'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1321' size-in-bits='64' id='type-id-1322'/>
+    <pointer-type-def type-id='type-id-1321' size-in-bits='64' id='type-id-1323'/>
+    <qualified-type-def type-id='type-id-1313' const='yes' id='type-id-1324'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1324' size-in-bits='64' id='type-id-1325'/>
+    <pointer-type-def type-id='type-id-1324' size-in-bits='64' id='type-id-1326'/>
+    <qualified-type-def type-id='type-id-1315' const='yes' id='type-id-1327'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1327' size-in-bits='64' id='type-id-1328'/>
+    <pointer-type-def type-id='type-id-1327' size-in-bits='64' id='type-id-1329'/>
+    <qualified-type-def type-id='type-id-1330' const='yes' id='type-id-1331'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1331' size-in-bits='64' id='type-id-1332'/>
+    <pointer-type-def type-id='type-id-1331' size-in-bits='64' id='type-id-1333'/>
+    <qualified-type-def type-id='type-id-1334' const='yes' id='type-id-1335'/>
+    <pointer-type-def type-id='type-id-1335' size-in-bits='64' id='type-id-1336'/>
+    <qualified-type-def type-id='type-id-1337' const='yes' id='type-id-1338'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1338' size-in-bits='64' id='type-id-1339'/>
+    <pointer-type-def type-id='type-id-1338' size-in-bits='64' id='type-id-1340'/>
+    <qualified-type-def type-id='type-id-1341' const='yes' id='type-id-1342'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1342' size-in-bits='64' id='type-id-1343'/>
+    <qualified-type-def type-id='type-id-1344' const='yes' id='type-id-1345'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1345' size-in-bits='64' id='type-id-1346'/>
+    <qualified-type-def type-id='type-id-1347' const='yes' id='type-id-1348'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1348' size-in-bits='64' id='type-id-1349'/>
+    <qualified-type-def type-id='type-id-1350' const='yes' id='type-id-1351'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1351' size-in-bits='64' id='type-id-1352'/>
+    <qualified-type-def type-id='type-id-1353' const='yes' id='type-id-1354'/>
+    <pointer-type-def type-id='type-id-1354' size-in-bits='64' id='type-id-1355'/>
+    <qualified-type-def type-id='type-id-1356' const='yes' id='type-id-1357'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1357' size-in-bits='64' id='type-id-1358'/>
+    <qualified-type-def type-id='type-id-1359' const='yes' id='type-id-1360'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1360' size-in-bits='64' id='type-id-1361'/>
+    <qualified-type-def type-id='type-id-1362' const='yes' id='type-id-1363'/>
+    <pointer-type-def type-id='type-id-1363' size-in-bits='64' id='type-id-1364'/>
+    <qualified-type-def type-id='type-id-1365' const='yes' id='type-id-1366'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1366' size-in-bits='64' id='type-id-1367'/>
+    <qualified-type-def type-id='type-id-1368' const='yes' id='type-id-1369'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1369' size-in-bits='64' id='type-id-1370'/>
+    <pointer-type-def type-id='type-id-1369' size-in-bits='64' id='type-id-1371'/>
+    <qualified-type-def type-id='type-id-1372' const='yes' id='type-id-1373'/>
+    <pointer-type-def type-id='type-id-1373' size-in-bits='64' id='type-id-1374'/>
+    <qualified-type-def type-id='type-id-1375' const='yes' id='type-id-1376'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1376' size-in-bits='64' id='type-id-1377'/>
+    <qualified-type-def type-id='type-id-1378' const='yes' id='type-id-1379'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1379' size-in-bits='64' id='type-id-1380'/>
+    <qualified-type-def type-id='type-id-1381' const='yes' id='type-id-1382'/>
+    <pointer-type-def type-id='type-id-1382' size-in-bits='64' id='type-id-1383'/>
+    <qualified-type-def type-id='type-id-1384' const='yes' id='type-id-1385'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1385' size-in-bits='64' id='type-id-1386'/>
+    <qualified-type-def type-id='type-id-1387' const='yes' id='type-id-1388'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1388' size-in-bits='64' id='type-id-1389'/>
+    <pointer-type-def type-id='type-id-1388' size-in-bits='64' id='type-id-1390'/>
+    <qualified-type-def type-id='type-id-1391' const='yes' id='type-id-1392'/>
+    <qualified-type-def type-id='type-id-1393' const='yes' id='type-id-1394'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1394' size-in-bits='64' id='type-id-1395'/>
+    <pointer-type-def type-id='type-id-1394' size-in-bits='64' id='type-id-1396'/>
+    <qualified-type-def type-id='type-id-1397' const='yes' id='type-id-1398'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1398' size-in-bits='64' id='type-id-1399'/>
+    <qualified-type-def type-id='type-id-1400' const='yes' id='type-id-1401'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1401' size-in-bits='64' id='type-id-1402'/>
+    <qualified-type-def type-id='type-id-1403' const='yes' id='type-id-1404'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1404' size-in-bits='64' id='type-id-1405'/>
+    <qualified-type-def type-id='type-id-1406' const='yes' id='type-id-1407'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1407' size-in-bits='64' id='type-id-1408'/>
+    <qualified-type-def type-id='type-id-1409' const='yes' id='type-id-1410'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1410' size-in-bits='64' id='type-id-1411'/>
+    <pointer-type-def type-id='type-id-1410' size-in-bits='64' id='type-id-1412'/>
+    <qualified-type-def type-id='type-id-1413' const='yes' id='type-id-1414'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1414' size-in-bits='64' id='type-id-1415'/>
+    <pointer-type-def type-id='type-id-1414' size-in-bits='64' id='type-id-1416'/>
+    <qualified-type-def type-id='type-id-1417' const='yes' id='type-id-1418'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1418' size-in-bits='64' id='type-id-1419'/>
+    <pointer-type-def type-id='type-id-1418' size-in-bits='64' id='type-id-1420'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1330' size-in-bits='64' id='type-id-1421'/>
+    <pointer-type-def type-id='type-id-1330' size-in-bits='64' id='type-id-1422'/>
+    <pointer-type-def type-id='type-id-1334' size-in-bits='64' id='type-id-1423'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1337' size-in-bits='64' id='type-id-1424'/>
+    <pointer-type-def type-id='type-id-1337' size-in-bits='64' id='type-id-1425'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1426' size-in-bits='64' id='type-id-1427'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1341' size-in-bits='64' id='type-id-1428'/>
+    <pointer-type-def type-id='type-id-1429' size-in-bits='64' id='type-id-1430'/>
+    <pointer-type-def type-id='type-id-1353' size-in-bits='64' id='type-id-1431'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1356' size-in-bits='64' id='type-id-1432'/>
+    <pointer-type-def type-id='type-id-1362' size-in-bits='64' id='type-id-1433'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1365' size-in-bits='64' id='type-id-1434'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1368' size-in-bits='64' id='type-id-1435'/>
+    <pointer-type-def type-id='type-id-1368' size-in-bits='64' id='type-id-1436'/>
+    <pointer-type-def type-id='type-id-1437' size-in-bits='64' id='type-id-1438'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1372' size-in-bits='64' id='type-id-1439'/>
+    <pointer-type-def type-id='type-id-1372' size-in-bits='64' id='type-id-1440'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1375' size-in-bits='64' id='type-id-1441'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1442' size-in-bits='64' id='type-id-1443'/>
+    <pointer-type-def type-id='type-id-1442' size-in-bits='64' id='type-id-1444'/>
+    <pointer-type-def type-id='type-id-1381' size-in-bits='64' id='type-id-1445'/>
+    <pointer-type-def type-id='type-id-1387' size-in-bits='64' id='type-id-1446'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1447' size-in-bits='64' id='type-id-1448'/>
+    <pointer-type-def type-id='type-id-1449' size-in-bits='64' id='type-id-1450'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1393' size-in-bits='64' id='type-id-1451'/>
+    <pointer-type-def type-id='type-id-1393' size-in-bits='64' id='type-id-1452'/>
+    <pointer-type-def type-id='type-id-1400' size-in-bits='64' id='type-id-1453'/>
+    <pointer-type-def type-id='type-id-1403' size-in-bits='64' id='type-id-1454'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1406' size-in-bits='64' id='type-id-1455'/>
+    <pointer-type-def type-id='type-id-1406' size-in-bits='64' id='type-id-1456'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1409' size-in-bits='64' id='type-id-1457'/>
+    <pointer-type-def type-id='type-id-1409' size-in-bits='64' id='type-id-1458'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1413' size-in-bits='64' id='type-id-1459'/>
+    <pointer-type-def type-id='type-id-1413' size-in-bits='64' id='type-id-1460'/>
+    <pointer-type-def type-id='type-id-1461' size-in-bits='64' id='type-id-1462'/>
+    <pointer-type-def type-id='type-id-1463' size-in-bits='64' id='type-id-1464'/>
+    <pointer-type-def type-id='type-id-1465' size-in-bits='64' id='type-id-1466'/>
+    <pointer-type-def type-id='type-id-1467' size-in-bits='64' id='type-id-1310'/>
     <namespace-decl name='std'>
-      <class-decl name='__alloctr_rebind&lt;std::allocator&lt;std::__regex::_State&gt;, std::__regex::_State, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='70' column='1' id='type-id-1467'>
+      <class-decl name='__alloctr_rebind&lt;std::allocator&lt;std::__regex::_State&gt;, std::__regex::_State, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='70' column='1' id='type-id-1468'>
         <member-type access='public'>
-          <typedef-decl name='__type' type-id='type-id-1469' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='72' column='1' id='type-id-1468'/>
+          <typedef-decl name='__type' type-id='type-id-1470' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='72' column='1' id='type-id-1469'/>
         </member-type>
       </class-decl>
-      <class-decl name='allocator_traits&lt;std::allocator&lt;std::__regex::_State&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='87' column='1' id='type-id-1470'>
+      <class-decl name='allocator_traits&lt;std::allocator&lt;std::__regex::_State&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='87' column='1' id='type-id-1471'>
         <member-type access='private'>
-          <typedef-decl name='__pointer' type-id='type-id-1472' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='102' column='1' id='type-id-1471'/>
+          <typedef-decl name='__pointer' type-id='type-id-1473' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='102' column='1' id='type-id-1472'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1471' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='109' column='1' id='type-id-1473'/>
+          <typedef-decl name='pointer' type-id='type-id-1472' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='109' column='1' id='type-id-1474'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='rebind_alloc' type-id='type-id-1468' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='204' column='1' id='type-id-1474'/>
+          <typedef-decl name='rebind_alloc' type-id='type-id-1469' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h' line='204' column='1' id='type-id-1475'/>
         </member-type>
       </class-decl>
-      <class-decl name='allocator&lt;int&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='89' column='1' id='type-id-1399'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1310'/>
+      <class-decl name='allocator&lt;int&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='89' column='1' id='type-id-1400'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1311'/>
         <member-type access='private'>
-          <class-decl name='rebind&lt;std::_Rb_tree_node&lt;int&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='101' column='1' id='type-id-1475'>
+          <class-decl name='rebind&lt;std::_Rb_tree_node&lt;int&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='101' column='1' id='type-id-1476'>
             <member-type access='public'>
-              <typedef-decl name='other' type-id='type-id-1402' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='102' column='1' id='type-id-1476'/>
+              <typedef-decl name='other' type-id='type-id-1403' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='102' column='1' id='type-id-1477'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1452' is-artificial='yes'/>
+            <parameter type-id='type-id-1453' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1452' is-artificial='yes'/>
-            <parameter type-id='type-id-1401'/>
+            <parameter type-id='type-id-1453' is-artificial='yes'/>
+            <parameter type-id='type-id-1402'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1452' is-artificial='yes'/>
+            <parameter type-id='type-id-1453' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='allocator&lt;std::_Rb_tree_node&lt;int&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='89' column='1' id='type-id-1402'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1312'/>
+      <class-decl name='allocator&lt;std::_Rb_tree_node&lt;int&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='89' column='1' id='type-id-1403'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1313'/>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1453' is-artificial='yes'/>
+            <parameter type-id='type-id-1454' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1453' is-artificial='yes'/>
-            <parameter type-id='type-id-1404'/>
+            <parameter type-id='type-id-1454' is-artificial='yes'/>
+            <parameter type-id='type-id-1405'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1453' is-artificial='yes'/>
+            <parameter type-id='type-id-1454' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='allocator&lt;std::__regex::_State&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='89' column='1' id='type-id-1405'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1314'/>
+      <class-decl name='allocator&lt;std::__regex::_State&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='89' column='1' id='type-id-1406'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1315'/>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-1451' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='94' column='1' id='type-id-1472'/>
+          <typedef-decl name='pointer' type-id='type-id-1452' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='94' column='1' id='type-id-1473'/>
         </member-type>
         <member-type access='private'>
-          <class-decl name='rebind&lt;std::__regex::_State&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='101' column='1' id='type-id-1477'>
+          <class-decl name='rebind&lt;std::__regex::_State&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='101' column='1' id='type-id-1478'>
             <member-type access='public'>
-              <typedef-decl name='other' type-id='type-id-1405' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='102' column='1' id='type-id-1469'/>
+              <typedef-decl name='other' type-id='type-id-1406' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='102' column='1' id='type-id-1470'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1455' is-artificial='yes'/>
+            <parameter type-id='type-id-1456' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1455' is-artificial='yes'/>
-            <parameter type-id='type-id-1407'/>
+            <parameter type-id='type-id-1456' is-artificial='yes'/>
+            <parameter type-id='type-id-1408'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1455' is-artificial='yes'/>
+            <parameter type-id='type-id-1456' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='unary_function&lt;const std::__regex::_PatternCursor&amp;, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-1478'/>
-      <class-decl name='binary_function&lt;const std::__regex::_PatternCursor&amp;, std::__regex::_Results&amp;, void&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1479'/>
-      <class-decl name='binary_function&lt;int, int, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1480'/>
-      <class-decl name='less&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='233' column='1' id='type-id-1416'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1480'/>
-      </class-decl>
-      <class-decl name='_Rb_tree_node&lt;int&gt;' size-in-bits='320' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='130' column='1' id='type-id-1367'>
+      <class-decl name='unary_function&lt;const std::__regex::_PatternCursor&amp;, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-1479'/>
+      <class-decl name='binary_function&lt;const std::__regex::_PatternCursor&amp;, std::__regex::_Results&amp;, void&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1480'/>
+      <class-decl name='binary_function&lt;int, int, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1481'/>
+      <class-decl name='less&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='233' column='1' id='type-id-1417'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1481'/>
+      </class-decl>
+      <class-decl name='_Rb_tree_node&lt;int&gt;' size-in-bits='320' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='130' column='1' id='type-id-1368'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1482'/>
         <data-member access='public' layout-offset-in-bits='256'>
           <var-decl name='_M_value_field' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='133' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Rb_tree_iterator&lt;int&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='156' column='1' id='type-id-1361'>
+      <class-decl name='_Rb_tree_iterator&lt;int&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='156' column='1' id='type-id-1362'>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1056' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='159' column='1' id='type-id-1482'/>
+          <typedef-decl name='reference' type-id='type-id-1057' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='159' column='1' id='type-id-1483'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-112' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='160' column='1' id='type-id-1483'/>
+          <typedef-decl name='pointer' type-id='type-id-112' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='160' column='1' id='type-id-1484'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='_Self' type-id='type-id-1361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='165' column='1' id='type-id-1364'/>
+          <typedef-decl name='_Self' type-id='type-id-1362' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='165' column='1' id='type-id-1365'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='_Base_ptr' type-id='type-id-1485' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='166' column='1' id='type-id-1484'/>
+          <typedef-decl name='_Base_ptr' type-id='type-id-1486' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='166' column='1' id='type-id-1485'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='_Link_type' type-id='type-id-1435' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='167' column='1' id='type-id-1486'/>
+          <typedef-decl name='_Link_type' type-id='type-id-1436' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='167' column='1' id='type-id-1487'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_node' type-id='type-id-1484' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='223' column='1'/>
+          <var-decl name='_M_node' type-id='type-id-1485' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='223' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rb_tree_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1432' is-artificial='yes'/>
+            <parameter type-id='type-id-1433' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Rb_tree_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1432' is-artificial='yes'/>
-            <parameter type-id='type-id-1486'/>
+            <parameter type-id='type-id-1433' is-artificial='yes'/>
+            <parameter type-id='type-id-1487'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rb_tree_const_iterator&lt;int&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='227' column='1' id='type-id-1352'>
+      <class-decl name='_Rb_tree_const_iterator&lt;int&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='227' column='1' id='type-id-1353'>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-285' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='230' column='1' id='type-id-1487'/>
+          <typedef-decl name='reference' type-id='type-id-285' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='230' column='1' id='type-id-1488'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1489' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='231' column='1' id='type-id-1488'/>
+          <typedef-decl name='pointer' type-id='type-id-1490' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='231' column='1' id='type-id-1489'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='iterator' type-id='type-id-1361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='233' column='1' id='type-id-1358'/>
+          <typedef-decl name='iterator' type-id='type-id-1362' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='233' column='1' id='type-id-1359'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='_Self' type-id='type-id-1352' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='238' column='1' id='type-id-1355'/>
+          <typedef-decl name='_Self' type-id='type-id-1353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='238' column='1' id='type-id-1356'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='_Base_ptr' type-id='type-id-1491' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='239' column='1' id='type-id-1490'/>
+          <typedef-decl name='_Base_ptr' type-id='type-id-1492' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='239' column='1' id='type-id-1491'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='_Link_type' type-id='type-id-1370' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='240' column='1' id='type-id-1492'/>
+          <typedef-decl name='_Link_type' type-id='type-id-1371' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='240' column='1' id='type-id-1493'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_node' type-id='type-id-1490' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='304' column='1'/>
+          <var-decl name='_M_node' type-id='type-id-1491' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='304' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rb_tree_const_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1430' is-artificial='yes'/>
+            <parameter type-id='type-id-1431' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Rb_tree_const_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='246' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1430' is-artificial='yes'/>
-            <parameter type-id='type-id-1492'/>
+            <parameter type-id='type-id-1431' is-artificial='yes'/>
+            <parameter type-id='type-id-1493'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Rb_tree_const_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='249' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1430' is-artificial='yes'/>
-            <parameter type-id='type-id-1360'/>
+            <parameter type-id='type-id-1431' is-artificial='yes'/>
+            <parameter type-id='type-id-1361'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rb_tree&lt;int, int, std::_Identity&lt;int&gt;, std::less&lt;int&gt;, std::allocator&lt;int&gt; &gt;' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='332' column='1' id='type-id-1336'>
+      <class-decl name='_Rb_tree&lt;int, int, std::_Identity&lt;int&gt;, std::less&lt;int&gt;, std::allocator&lt;int&gt; &gt;' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='332' column='1' id='type-id-1337'>
         <member-type access='private'>
-          <typedef-decl name='_Node_allocator' type-id='type-id-1476' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='335' column='1' id='type-id-1340'/>
+          <typedef-decl name='_Node_allocator' type-id='type-id-1477' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='335' column='1' id='type-id-1341'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_Base_ptr' type-id='type-id-1493' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='338' column='1' id='type-id-1425'/>
+          <typedef-decl name='_Base_ptr' type-id='type-id-1494' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='338' column='1' id='type-id-1426'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_Const_Base_ptr' type-id='type-id-1495' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='339' column='1' id='type-id-1494'/>
+          <typedef-decl name='_Const_Base_ptr' type-id='type-id-1496' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='339' column='1' id='type-id-1495'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='key_type' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='342' column='1' id='type-id-1346'/>
+          <typedef-decl name='key_type' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='342' column='1' id='type-id-1347'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='value_type' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='343' column='1' id='type-id-1349'/>
+          <typedef-decl name='value_type' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='343' column='1' id='type-id-1350'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-1351' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='347' column='1' id='type-id-1496'/>
+          <typedef-decl name='const_reference' type-id='type-id-1352' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='347' column='1' id='type-id-1497'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_Link_type' type-id='type-id-1435' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='348' column='1' id='type-id-1497'/>
+          <typedef-decl name='_Link_type' type-id='type-id-1436' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='348' column='1' id='type-id-1498'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_Const_Link_type' type-id='type-id-1370' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='349' column='1' id='type-id-1498'/>
+          <typedef-decl name='_Const_Link_type' type-id='type-id-1371' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='349' column='1' id='type-id-1499'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='350' column='1' id='type-id-1499'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='350' column='1' id='type-id-1500'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='allocator_type' type-id='type-id-1399' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='352' column='1' id='type-id-1343'/>
+          <typedef-decl name='allocator_type' type-id='type-id-1400' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='352' column='1' id='type-id-1344'/>
         </member-type>
         <member-type access='protected'>
-          <class-decl name='_Rb_tree_impl&lt;std::less&lt;int&gt;, true&gt;' size-in-bits='384' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='437' column='1' id='type-id-1428'>
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1402'/>
+          <class-decl name='_Rb_tree_impl&lt;std::less&lt;int&gt;, true&gt;' size-in-bits='384' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='437' column='1' id='type-id-1429'>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1403'/>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='_M_key_compare' type-id='type-id-1416' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='439' column='1'/>
+              <var-decl name='_M_key_compare' type-id='type-id-1417' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='439' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
-              <var-decl name='_M_header' type-id='type-id-1481' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='440' column='1'/>
+              <var-decl name='_M_header' type-id='type-id-1482' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='440' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='320'>
-              <var-decl name='_M_node_count' type-id='type-id-1499' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='441' column='1'/>
+              <var-decl name='_M_node_count' type-id='type-id-1500' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='441' column='1'/>
             </data-member>
             <member-function access='public'>
               <function-decl name='_Rb_tree_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1429' is-artificial='yes'/>
+                <parameter type-id='type-id-1430' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <function-decl name='_Rb_tree_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='448' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1429' is-artificial='yes'/>
-                <parameter type-id='type-id-1418'/>
-                <parameter type-id='type-id-1342'/>
+                <parameter type-id='type-id-1430' is-artificial='yes'/>
+                <parameter type-id='type-id-1419'/>
+                <parameter type-id='type-id-1343'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public'>
               <function-decl name='_Rb_tree_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='454' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1429' is-artificial='yes'/>
-                <parameter type-id='type-id-1418'/>
-                <parameter type-id='type-id-1427'/>
+                <parameter type-id='type-id-1430' is-artificial='yes'/>
+                <parameter type-id='type-id-1419'/>
+                <parameter type-id='type-id-1428'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iterator' type-id='type-id-1361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='566' column='1' id='type-id-1500'/>
+          <typedef-decl name='iterator' type-id='type-id-1362' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='566' column='1' id='type-id-1501'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_iterator' type-id='type-id-1352' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='567' column='1' id='type-id-1501'/>
+          <typedef-decl name='const_iterator' type-id='type-id-1353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='567' column='1' id='type-id-1502'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reverse_iterator' type-id='type-id-1503' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='569' column='1' id='type-id-1502'/>
+          <typedef-decl name='reverse_iterator' type-id='type-id-1504' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='569' column='1' id='type-id-1503'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reverse_iterator' type-id='type-id-1505' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='570' column='1' id='type-id-1504'/>
+          <typedef-decl name='const_reverse_iterator' type-id='type-id-1506' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='570' column='1' id='type-id-1505'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='0'>
-          <var-decl name='_M_impl' type-id='type-id-1428' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='471' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-1429' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='471' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='_Rb_tree' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='623' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_Rb_tree' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='625' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
-            <parameter type-id='type-id-1418'/>
-            <parameter type-id='type-id-1345'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
+            <parameter type-id='type-id-1419'/>
+            <parameter type-id='type-id-1346'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_Rb_tree' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='629' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
-            <parameter type-id='type-id-1338'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
+            <parameter type-id='type-id-1339'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_Rb_tree' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='918' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
-            <parameter type-id='type-id-1423'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
+            <parameter type-id='type-id-1424'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~_Rb_tree' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='645' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_begin' mangled-name='_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE8_M_beginEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='499' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
-            <return type-id='type-id-1497'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
+            <return type-id='type-id-1498'/>
           </function-decl>
         </member-function>
         <member-function access='protected' static='yes'>
           <function-decl name='_S_right' mangled-name='_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE8_S_rightEPSt18_Rb_tree_node_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='534' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1425'/>
-            <return type-id='type-id-1497'/>
+            <parameter type-id='type-id-1426'/>
+            <return type-id='type-id-1498'/>
           </function-decl>
         </member-function>
         <member-function access='protected' static='yes'>
           <function-decl name='_S_left' mangled-name='_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE7_S_leftEPSt18_Rb_tree_node_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='526' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1425'/>
-            <return type-id='type-id-1497'/>
+            <parameter type-id='type-id-1426'/>
+            <return type-id='type-id-1498'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_put_node' mangled-name='_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE11_M_put_nodeEPSt13_Rb_tree_nodeIiE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
-            <parameter type-id='type-id-1497'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
+            <parameter type-id='type-id-1498'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_get_Node_allocator' mangled-name='_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE21_M_get_Node_allocatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='355' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
-            <return type-id='type-id-1427'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
+            <return type-id='type-id-1428'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_destroy_node' mangled-name='_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE15_M_destroy_nodeEPSt13_Rb_tree_nodeIiE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1424' is-artificial='yes'/>
-            <parameter type-id='type-id-1497'/>
+            <parameter type-id='type-id-1425' is-artificial='yes'/>
+            <parameter type-id='type-id-1498'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Vector_base&lt;std::__regex::_State, std::allocator&lt;std::__regex::_State&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='73' column='1' id='type-id-1371'>
+      <class-decl name='_Vector_base&lt;std::__regex::_State, std::allocator&lt;std::__regex::_State&gt; &gt;' size-in-bits='192' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='73' column='1' id='type-id-1372'>
         <member-type access='public'>
-          <typedef-decl name='_Tp_alloc_type' type-id='type-id-1506' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='76' column='1' id='type-id-1374'/>
+          <typedef-decl name='_Tp_alloc_type' type-id='type-id-1507' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='76' column='1' id='type-id-1375'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1508' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='78' column='1' id='type-id-1507'/>
+          <typedef-decl name='pointer' type-id='type-id-1509' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='78' column='1' id='type-id-1508'/>
         </member-type>
         <member-type access='public'>
-          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='80' column='1' id='type-id-1441'>
-            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1405'/>
+          <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='80' column='1' id='type-id-1442'>
+            <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1406'/>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='_M_start' type-id='type-id-1507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='83' column='1'/>
+              <var-decl name='_M_start' type-id='type-id-1508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='83' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
-              <var-decl name='_M_finish' type-id='type-id-1507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='84' column='1'/>
+              <var-decl name='_M_finish' type-id='type-id-1508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='84' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='128'>
-              <var-decl name='_M_end_of_storage' type-id='type-id-1507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='85' column='1'/>
+              <var-decl name='_M_end_of_storage' type-id='type-id-1508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='85' column='1'/>
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1443' is-artificial='yes'/>
+                <parameter type-id='type-id-1444' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1443' is-artificial='yes'/>
-                <parameter type-id='type-id-1376'/>
+                <parameter type-id='type-id-1444' is-artificial='yes'/>
+                <parameter type-id='type-id-1377'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Vector_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1443' is-artificial='yes'/>
-                <parameter type-id='type-id-1440'/>
+                <parameter type-id='type-id-1444' is-artificial='yes'/>
+                <parameter type-id='type-id-1441'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-1405' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='111' column='1' id='type-id-1377'/>
+          <typedef-decl name='allocator_type' type-id='type-id-1406' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='111' column='1' id='type-id-1378'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_impl' type-id='type-id-1441' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='165' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-1442' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='165' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
-            <parameter type-id='type-id-1379'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
+            <parameter type-id='type-id-1380'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-1379'/>
+            <parameter type-id='type-id-1380'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
-            <parameter type-id='type-id-1440'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
+            <parameter type-id='type-id-1441'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
-            <parameter type-id='type-id-1438'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
+            <parameter type-id='type-id-1439'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
-            <parameter type-id='type-id-1438'/>
-            <parameter type-id='type-id-1379'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
+            <parameter type-id='type-id-1439'/>
+            <parameter type-id='type-id-1380'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Vector_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseINSt7__regex6_StateESaIS1_EE13_M_deallocateEPS1_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
-            <parameter type-id='type-id-1507'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
+            <parameter type-id='type-id-1508'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseINSt7__regex6_StateESaIS1_EE19_M_get_Tp_allocatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_vector.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1439' is-artificial='yes'/>
-            <return type-id='type-id-1440'/>
+            <parameter type-id='type-id-1440' is-artificial='yes'/>
+            <return type-id='type-id-1441'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Maybe_unary_or_binary_function&lt;bool, const std::__regex::_PatternCursor&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='515' column='1' id='type-id-1509'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1478'/>
-      </class-decl>
-      <class-decl name='_Maybe_unary_or_binary_function&lt;void, const std::__regex::_PatternCursor&amp;, std::__regex::_Results&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='520' column='1' id='type-id-1510'>
+      <class-decl name='_Maybe_unary_or_binary_function&lt;bool, const std::__regex::_PatternCursor&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='515' column='1' id='type-id-1510'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1479'/>
       </class-decl>
-      <class-decl name='bad_function_call' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1633' column='1' id='type-id-1511'>
+      <class-decl name='_Maybe_unary_or_binary_function&lt;void, const std::__regex::_PatternCursor&amp;, std::__regex::_Results&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='520' column='1' id='type-id-1511'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1480'/>
+      </class-decl>
+      <class-decl name='bad_function_call' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1633' column='1' id='type-id-1512'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-11'/>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~bad_function_call' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1633' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1512' is-artificial='yes'/>
+            <parameter type-id='type-id-1513' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~bad_function_call' mangled-name='_ZNSt17bad_function_callD0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1633' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17bad_function_callD0Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-1512' is-artificial='yes'/>
+            <parameter type-id='type-id-1513' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~bad_function_call' mangled-name='_ZNSt17bad_function_callD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1633' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17bad_function_callD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-1512' is-artificial='yes'/>
+            <parameter type-id='type-id-1513' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <union-decl name='_Nocopy_types' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1652' column='1' id='type-id-1513'>
+      <union-decl name='_Nocopy_types' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1652' column='1' id='type-id-1514'>
         <data-member access='public'>
           <var-decl name='_M_object' type-id='type-id-34' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1654' column='1'/>
         </data-member>
@@ -19983,176 +19989,176 @@ 
           <var-decl name='_M_function_pointer' type-id='type-id-92' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1656' column='1'/>
         </data-member>
         <data-member access='public'>
-          <var-decl name='_M_member_pointer' type-id='type-id-1308' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1657' column='1'/>
+          <var-decl name='_M_member_pointer' type-id='type-id-1309' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1657' column='1'/>
         </data-member>
       </union-decl>
-      <union-decl name='_Any_data' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1660' column='1' id='type-id-1329'>
+      <union-decl name='_Any_data' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1660' column='1' id='type-id-1330'>
         <data-member access='public'>
-          <var-decl name='_M_unused' type-id='type-id-1513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1675' column='1'/>
+          <var-decl name='_M_unused' type-id='type-id-1514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1675' column='1'/>
         </data-member>
         <data-member access='public'>
-          <var-decl name='_M_pod_data' type-id='type-id-1306' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1676' column='1'/>
+          <var-decl name='_M_pod_data' type-id='type-id-1307' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1676' column='1'/>
         </data-member>
       </union-decl>
-      <enum-decl name='_Manager_operation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1679' column='1' id='type-id-1514'>
+      <enum-decl name='_Manager_operation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1679' column='1' id='type-id-1515'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='__get_type_info' value='0'/>
         <enumerator name='__get_functor_ptr' value='1'/>
         <enumerator name='__clone_functor' value='2'/>
         <enumerator name='__destroy_functor' value='3'/>
       </enum-decl>
-      <class-decl name='_Function_base' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1723' column='1' id='type-id-1333'>
+      <class-decl name='_Function_base' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1723' column='1' id='type-id-1334'>
         <member-type access='private'>
-          <typedef-decl name='_Manager_type' type-id='type-id-1319' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1891' column='1' id='type-id-1515'/>
+          <typedef-decl name='_Manager_type' type-id='type-id-1320' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1891' column='1' id='type-id-1516'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='_M_max_size' type-id='type-id-1516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1726' column='1'/>
+          <var-decl name='_M_max_size' type-id='type-id-1517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1726' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_M_max_align' type-id='type-id-1516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1727' column='1'/>
+          <var-decl name='_M_max_align' type-id='type-id-1517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1727' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_functor' type-id='type-id-1329' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1893' column='1'/>
+          <var-decl name='_M_functor' type-id='type-id-1330' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1893' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_manager' type-id='type-id-1515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1894' column='1'/>
+          <var-decl name='_M_manager' type-id='type-id-1516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1894' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='_Function_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1879' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1422' is-artificial='yes'/>
+            <parameter type-id='type-id-1423' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~_Function_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1881' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1422' is-artificial='yes'/>
+            <parameter type-id='type-id-1423' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='function&lt;bool(const std::__regex::_PatternCursor&amp;)&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2024' column='1' id='type-id-1408'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1509'/>
-        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1333'/>
+      <class-decl name='function&lt;bool(const std::__regex::_PatternCursor&amp;)&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2024' column='1' id='type-id-1409'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1510'/>
+        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1334'/>
         <member-type access='private'>
-          <typedef-decl name='_Invoker_type' type-id='type-id-1317' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2267' column='1' id='type-id-1517'/>
+          <typedef-decl name='_Invoker_type' type-id='type-id-1318' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2267' column='1' id='type-id-1518'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_invoker' type-id='type-id-1517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2268' column='1'/>
+          <var-decl name='_M_invoker' type-id='type-id-1518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2268' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2041' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1457' is-artificial='yes'/>
+            <parameter type-id='type-id-1458' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2273' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1457' is-artificial='yes'/>
-            <parameter type-id='type-id-1410'/>
+            <parameter type-id='type-id-1458' is-artificial='yes'/>
+            <parameter type-id='type-id-1411'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2068' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1457' is-artificial='yes'/>
-            <parameter type-id='type-id-1456'/>
+            <parameter type-id='type-id-1458' is-artificial='yes'/>
+            <parameter type-id='type-id-1457'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='function&lt;void(const std::__regex::_PatternCursor&amp;, std::__regex::_Results&amp;)&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2024' column='1' id='type-id-1412'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1510'/>
-        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1333'/>
+      <class-decl name='function&lt;void(const std::__regex::_PatternCursor&amp;, std::__regex::_Results&amp;)&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2024' column='1' id='type-id-1413'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1511'/>
+        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1334'/>
         <member-type access='private'>
-          <typedef-decl name='_Invoker_type' type-id='type-id-1465' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2267' column='1' id='type-id-1518'/>
+          <typedef-decl name='_Invoker_type' type-id='type-id-1466' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2267' column='1' id='type-id-1519'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_invoker' type-id='type-id-1518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2268' column='1'/>
+          <var-decl name='_M_invoker' type-id='type-id-1519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2268' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2041' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1459' is-artificial='yes'/>
+            <parameter type-id='type-id-1460' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2273' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1459' is-artificial='yes'/>
-            <parameter type-id='type-id-1414'/>
+            <parameter type-id='type-id-1460' is-artificial='yes'/>
+            <parameter type-id='type-id-1415'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2068' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1459' is-artificial='yes'/>
-            <parameter type-id='type-id-1458'/>
+            <parameter type-id='type-id-1460' is-artificial='yes'/>
+            <parameter type-id='type-id-1459'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <enum-decl name='future_errc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='61' column='1' id='type-id-1519'>
+      <enum-decl name='future_errc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='61' column='1' id='type-id-1520'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='future_already_retrieved' value='1'/>
         <enumerator name='promise_already_satisfied' value='2'/>
         <enumerator name='no_state' value='3'/>
         <enumerator name='broken_promise' value='4'/>
       </enum-decl>
-      <class-decl name='future_error' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='91' column='1' id='type-id-1460'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1520'/>
+      <class-decl name='future_error' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='91' column='1' id='type-id-1461'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1521'/>
         <data-member access='private' layout-offset-in-bits='128'>
           <var-decl name='_M_code' type-id='type-id-292' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='93' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='future_error' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1461' is-artificial='yes'/>
+            <parameter type-id='type-id-1462' is-artificial='yes'/>
             <parameter type-id='type-id-292'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~future_error' filepath='../../../.././libstdc++-v3/src/c++11/future.cc' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1461' is-artificial='yes'/>
+            <parameter type-id='type-id-1462' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~future_error' mangled-name='_ZNSt12future_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++11/future.cc' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12future_errorD0Ev@@GLIBCXX_3.4.14'>
-            <parameter type-id='type-id-1461' is-artificial='yes'/>
+            <parameter type-id='type-id-1462' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~future_error' mangled-name='_ZNSt12future_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++11/future.cc' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12future_errorD2Ev@@GLIBCXX_3.4.14'>
-            <parameter type-id='type-id-1461' is-artificial='yes'/>
+            <parameter type-id='type-id-1462' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes' vtable-offset='2'>
           <function-decl name='what' mangled-name='_ZNKSt12future_error4whatEv' filepath='../../../.././libstdc++-v3/src/c++11/future.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt12future_error4whatEv@@GLIBCXX_3.4.14'>
-            <parameter type-id='type-id-1521' is-artificial='yes'/>
+            <parameter type-id='type-id-1522' is-artificial='yes'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='system_error' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='309' column='1' id='type-id-1462'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1522'/>
+      <class-decl name='system_error' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='309' column='1' id='type-id-1463'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1523'/>
         <data-member access='private' layout-offset-in-bits='128'>
           <var-decl name='_M_code' type-id='type-id-292' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='312' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='system_error' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1463' is-artificial='yes'/>
+            <parameter type-id='type-id-1464' is-artificial='yes'/>
             <parameter type-id='type-id-292'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='system_error' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='318' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1463' is-artificial='yes'/>
+            <parameter type-id='type-id-1464' is-artificial='yes'/>
             <parameter type-id='type-id-292'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
@@ -20160,7 +20166,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='system_error' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1463' is-artificial='yes'/>
+            <parameter type-id='type-id-1464' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-288'/>
             <return type-id='type-id-5'/>
@@ -20168,7 +20174,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='system_error' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='336' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1463' is-artificial='yes'/>
+            <parameter type-id='type-id-1464' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-288'/>
             <parameter type-id='type-id-324'/>
@@ -20177,31 +20183,31 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~system_error' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='309' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1463' is-artificial='yes'/>
+            <parameter type-id='type-id-1464' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~system_error' mangled-name='_ZNSt12system_errorD0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12system_errorD0Ev@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1463' is-artificial='yes'/>
+            <parameter type-id='type-id-1464' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~system_error' mangled-name='_ZNSt12system_errorD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12system_errorD2Ev@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-1463' is-artificial='yes'/>
+            <parameter type-id='type-id-1464' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Undefined_class' visibility='default' is-declaration-only='yes' id='type-id-1436'/>
-      <class-decl name='pair&lt;std::_Rb_tree_const_iterator&lt;int&gt;, std::_Rb_tree_const_iterator&lt;int&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1523'/>
-      <class-decl name='pair&lt;std::_Rb_tree_iterator&lt;int&gt;, std::_Rb_tree_iterator&lt;int&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1524'/>
-      <class-decl name='reverse_iterator&lt;std::_Rb_tree_const_iterator&lt;int&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-1505'/>
-      <class-decl name='reverse_iterator&lt;std::_Rb_tree_iterator&lt;int&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-1503'/>
+      <class-decl name='_Undefined_class' visibility='default' is-declaration-only='yes' id='type-id-1437'/>
+      <class-decl name='pair&lt;std::_Rb_tree_const_iterator&lt;int&gt;, std::_Rb_tree_const_iterator&lt;int&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1524'/>
+      <class-decl name='pair&lt;std::_Rb_tree_iterator&lt;int&gt;, std::_Rb_tree_iterator&lt;int&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1525'/>
+      <class-decl name='reverse_iterator&lt;std::_Rb_tree_const_iterator&lt;int&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-1506'/>
+      <class-decl name='reverse_iterator&lt;std::_Rb_tree_iterator&lt;int&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-1504'/>
       <function-decl name='__throw_bad_exception' mangled-name='_ZSt21__throw_bad_exceptionv' filepath='../../../.././libstdc++-v3/src/c++11/functexcept.cc' line='49' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt21__throw_bad_exceptionv@@GLIBCXX_3.4'>
         <return type-id='type-id-5'/>
       </function-decl>
@@ -20266,15 +20272,15 @@ 
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__throw_regex_error' mangled-name='_ZSt19__throw_regex_errorNSt15regex_constants10error_typeE' filepath='../../../.././libstdc++-v3/src/c++11/functexcept.cc' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt19__throw_regex_errorNSt15regex_constants10error_typeE@@GLIBCXX_3.4.15'>
-        <parameter type-id='type-id-1525'/>
+        <parameter type-id='type-id-1526'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__addressof&lt;std::__regex::_State&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1450'/>
-        <return type-id='type-id-1451'/>
+        <parameter type-id='type-id-1451'/>
+        <return type-id='type-id-1452'/>
       </function-decl>
       <namespace-decl name='regex_constants'>
-        <enum-decl name='error_type' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_error.h' line='44' column='1' id='type-id-1525'>
+        <enum-decl name='error_type' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_error.h' line='44' column='1' id='type-id-1526'>
           <underlying-type type-id='type-id-37'/>
           <enumerator name='_S_error_collate' value='0'/>
           <enumerator name='_S_error_ctype' value='1'/>
@@ -20293,138 +20299,138 @@ 
         </enum-decl>
       </namespace-decl>
       <namespace-decl name='__regex'>
-        <class-decl name='_Scanner_base' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='37' column='1' id='type-id-1448'>
+        <class-decl name='_Scanner_base' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='37' column='1' id='type-id-1449'>
           <member-type access='public'>
-            <typedef-decl name='_StateT' type-id='type-id-39' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='39' column='1' id='type-id-1390'/>
+            <typedef-decl name='_StateT' type-id='type-id-39' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='39' column='1' id='type-id-1391'/>
           </member-type>
           <data-member access='public' static='yes'>
-            <var-decl name='_S_state_at_start' type-id='type-id-1391' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='41' column='1'/>
+            <var-decl name='_S_state_at_start' type-id='type-id-1392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='41' column='1'/>
           </data-member>
           <data-member access='public' static='yes'>
-            <var-decl name='_S_state_in_brace' type-id='type-id-1391' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='42' column='1'/>
+            <var-decl name='_S_state_in_brace' type-id='type-id-1392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='42' column='1'/>
           </data-member>
           <data-member access='public' static='yes'>
-            <var-decl name='_S_state_in_bracket' type-id='type-id-1391' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='43' column='1'/>
+            <var-decl name='_S_state_in_bracket' type-id='type-id-1392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='43' column='1'/>
           </data-member>
           <member-function access='public' destructor='yes' vtable-offset='-1'>
             <function-decl name='~_Scanner_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_compiler.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1449' is-artificial='yes'/>
+              <parameter type-id='type-id-1450' is-artificial='yes'/>
               <parameter type-id='type-id-6' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_PatternCursor' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_cursor.h' line='38' column='1' id='type-id-1386'>
+        <class-decl name='_PatternCursor' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_cursor.h' line='38' column='1' id='type-id-1387'>
           <member-function access='public' destructor='yes' vtable-offset='-1'>
             <function-decl name='~_PatternCursor' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_cursor.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1445' is-artificial='yes'/>
+              <parameter type-id='type-id-1446' is-artificial='yes'/>
               <parameter type-id='type-id-6' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' vtable-offset='2'>
             <function-decl name='_M_next' mangled-name='_ZNSt7__regex14_PatternCursor7_M_nextEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_cursor.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1445' is-artificial='yes'/>
+              <parameter type-id='type-id-1446' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' const='yes' vtable-offset='3'>
             <function-decl name='_M_at_end' mangled-name='_ZNKSt7__regex14_PatternCursor9_M_at_endEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_cursor.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1389' is-artificial='yes'/>
+              <parameter type-id='type-id-1390' is-artificial='yes'/>
               <return type-id='type-id-40'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Automaton' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='38' column='1' id='type-id-1380'>
+        <class-decl name='_Automaton' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='38' column='1' id='type-id-1381'>
           <member-type access='private'>
-            <typedef-decl name='_SizeT' type-id='type-id-39' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='41' column='1' id='type-id-1526'/>
+            <typedef-decl name='_SizeT' type-id='type-id-39' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='41' column='1' id='type-id-1527'/>
           </member-type>
           <member-function access='private' destructor='yes' vtable-offset='-1'>
             <function-decl name='~_Automaton' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1444' is-artificial='yes'/>
+              <parameter type-id='type-id-1445' is-artificial='yes'/>
               <parameter type-id='type-id-6' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes' vtable-offset='2'>
             <function-decl name='_M_sub_count' mangled-name='_ZNKSt7__regex10_Automaton12_M_sub_countEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1382' is-artificial='yes'/>
-              <return type-id='type-id-1526'/>
+              <parameter type-id='type-id-1383' is-artificial='yes'/>
+              <return type-id='type-id-1527'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <typedef-decl name='_Tagger' type-id='type-id-1412' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='79' column='1' id='type-id-1396'/>
-        <typedef-decl name='_Matcher' type-id='type-id-1408' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='112' column='1' id='type-id-1383'/>
-        <typedef-decl name='_StateIdT' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='187' column='1' id='type-id-1527'/>
-        <class-decl name='_State' size-in-bits='640' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='200' column='1' id='type-id-1392'>
+        <typedef-decl name='_Tagger' type-id='type-id-1413' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='79' column='1' id='type-id-1397'/>
+        <typedef-decl name='_Matcher' type-id='type-id-1409' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='112' column='1' id='type-id-1384'/>
+        <typedef-decl name='_StateIdT' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='187' column='1' id='type-id-1528'/>
+        <class-decl name='_State' size-in-bits='640' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='200' column='1' id='type-id-1393'>
           <member-type access='public'>
-            <typedef-decl name='_OpcodeT' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='202' column='1' id='type-id-1528'/>
+            <typedef-decl name='_OpcodeT' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='202' column='1' id='type-id-1529'/>
           </member-type>
           <data-member access='public' layout-offset-in-bits='0'>
-            <var-decl name='_M_opcode' type-id='type-id-1528' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='204' column='1'/>
+            <var-decl name='_M_opcode' type-id='type-id-1529' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='204' column='1'/>
           </data-member>
           <data-member access='public' layout-offset-in-bits='32'>
-            <var-decl name='_M_next' type-id='type-id-1527' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='205' column='1'/>
+            <var-decl name='_M_next' type-id='type-id-1528' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='205' column='1'/>
           </data-member>
           <data-member access='public' layout-offset-in-bits='64'>
-            <var-decl name='_M_alt' type-id='type-id-1527' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='206' column='1'/>
+            <var-decl name='_M_alt' type-id='type-id-1528' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='206' column='1'/>
           </data-member>
           <data-member access='public' layout-offset-in-bits='96'>
             <var-decl name='_M_subexpr' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='207' column='1'/>
           </data-member>
           <data-member access='public' layout-offset-in-bits='128'>
-            <var-decl name='_M_tagger' type-id='type-id-1396' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='208' column='1'/>
+            <var-decl name='_M_tagger' type-id='type-id-1397' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='208' column='1'/>
           </data-member>
           <data-member access='public' layout-offset-in-bits='384'>
-            <var-decl name='_M_matches' type-id='type-id-1383' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='209' column='1'/>
+            <var-decl name='_M_matches' type-id='type-id-1384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='209' column='1'/>
           </data-member>
           <member-function access='public' constructor='yes'>
             <function-decl name='_State' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1451' is-artificial='yes'/>
-              <parameter type-id='type-id-1528'/>
+              <parameter type-id='type-id-1452' is-artificial='yes'/>
+              <parameter type-id='type-id-1529'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' constructor='yes'>
             <function-decl name='_State' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1451' is-artificial='yes'/>
-              <parameter type-id='type-id-1385'/>
+              <parameter type-id='type-id-1452' is-artificial='yes'/>
+              <parameter type-id='type-id-1386'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' constructor='yes'>
             <function-decl name='_State' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='219' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1451' is-artificial='yes'/>
-              <parameter type-id='type-id-1528'/>
+              <parameter type-id='type-id-1452' is-artificial='yes'/>
+              <parameter type-id='type-id-1529'/>
               <parameter type-id='type-id-39'/>
-              <parameter type-id='type-id-1398'/>
+              <parameter type-id='type-id-1399'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public' constructor='yes'>
             <function-decl name='_State' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_nfa.h' line='224' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1451' is-artificial='yes'/>
-              <parameter type-id='type-id-1527'/>
-              <parameter type-id='type-id-1527'/>
+              <parameter type-id='type-id-1452' is-artificial='yes'/>
+              <parameter type-id='type-id-1528'/>
+              <parameter type-id='type-id-1528'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Results' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1446'/>
+        <class-decl name='_Results' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1447'/>
       </namespace-decl>
       <function-decl name='_Destroy&lt;std::__regex::_State&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_construct.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1451'/>
+        <parameter type-id='type-id-1452'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='_Destroy&lt;std::__regex::_State*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_construct.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1451'/>
-        <parameter type-id='type-id-1451'/>
+        <parameter type-id='type-id-1452'/>
+        <parameter type-id='type-id-1452'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='_Destroy&lt;std::__regex::_State*, std::__regex::_State&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_construct.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1451'/>
-        <parameter type-id='type-id-1451'/>
-        <parameter type-id='type-id-1454'/>
+        <parameter type-id='type-id-1452'/>
+        <parameter type-id='type-id-1452'/>
+        <parameter type-id='type-id-1455'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__bind_simple&lt;void (std::thread::*)(), std::reference_wrapper&lt;std::thread&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1618' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -20433,324 +20439,324 @@ 
         <return type-id='type-id-561'/>
       </function-decl>
       <function-decl name='make_error_code' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1519'/>
+        <parameter type-id='type-id-1520'/>
         <return type-id='type-id-292'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='__alloc_traits&lt;std::allocator&lt;std::__regex::_State&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='110' column='1' id='type-id-1529'>
+      <class-decl name='__alloc_traits&lt;std::allocator&lt;std::__regex::_State&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='110' column='1' id='type-id-1530'>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1473' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='119' column='1' id='type-id-1508'/>
+          <typedef-decl name='pointer' type-id='type-id-1474' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='119' column='1' id='type-id-1509'/>
         </member-type>
         <member-type access='public'>
-          <class-decl name='rebind&lt;std::__regex::_State&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='183' column='1' id='type-id-1530'>
+          <class-decl name='rebind&lt;std::__regex::_State&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='183' column='1' id='type-id-1531'>
             <member-type access='public'>
-              <typedef-decl name='other' type-id='type-id-1474' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='184' column='1' id='type-id-1506'/>
+              <typedef-decl name='other' type-id='type-id-1475' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h' line='184' column='1' id='type-id-1507'/>
             </member-type>
           </class-decl>
         </member-type>
       </class-decl>
-      <class-decl name='new_allocator&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-1310'>
+      <class-decl name='new_allocator&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-1311'>
         <member-type access='public'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1531'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1532'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-112' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1532'/>
+          <typedef-decl name='pointer' type-id='type-id-112' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1533'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='const_pointer' type-id='type-id-1489' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1533'/>
+          <typedef-decl name='const_pointer' type-id='type-id-1490' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1534'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1056' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1534'/>
+          <typedef-decl name='reference' type-id='type-id-1057' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1535'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='const_reference' type-id='type-id-285' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1535'/>
+          <typedef-decl name='const_reference' type-id='type-id-285' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1536'/>
         </member-type>
         <member-function access='public'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1311' is-artificial='yes'/>
+            <parameter type-id='type-id-1312' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1311' is-artificial='yes'/>
-            <parameter type-id='type-id-1321'/>
+            <parameter type-id='type-id-1312' is-artificial='yes'/>
+            <parameter type-id='type-id-1322'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1311' is-artificial='yes'/>
+            <parameter type-id='type-id-1312' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='new_allocator&lt;std::_Rb_tree_node&lt;int&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-1312'>
+      <class-decl name='new_allocator&lt;std::_Rb_tree_node&lt;int&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-1313'>
         <member-type access='public'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1536'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1537'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1435' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1537'/>
+          <typedef-decl name='pointer' type-id='type-id-1436' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1538'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='const_pointer' type-id='type-id-1370' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1538'/>
+          <typedef-decl name='const_pointer' type-id='type-id-1371' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1539'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1434' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1539'/>
+          <typedef-decl name='reference' type-id='type-id-1435' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1540'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='const_reference' type-id='type-id-1369' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1540'/>
+          <typedef-decl name='const_reference' type-id='type-id-1370' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1541'/>
         </member-type>
         <member-function access='public'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1313' is-artificial='yes'/>
+            <parameter type-id='type-id-1314' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1313' is-artificial='yes'/>
-            <parameter type-id='type-id-1324'/>
+            <parameter type-id='type-id-1314' is-artificial='yes'/>
+            <parameter type-id='type-id-1325'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1313' is-artificial='yes'/>
+            <parameter type-id='type-id-1314' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='destroy&lt;std::_Rb_tree_node&lt;int&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1313' is-artificial='yes'/>
-            <parameter type-id='type-id-1435'/>
+            <parameter type-id='type-id-1314' is-artificial='yes'/>
+            <parameter type-id='type-id-1436'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIiEE10deallocateEPS2_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1313' is-artificial='yes'/>
+            <parameter type-id='type-id-1314' is-artificial='yes'/>
+            <parameter type-id='type-id-1538'/>
             <parameter type-id='type-id-1537'/>
-            <parameter type-id='type-id-1536'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='new_allocator&lt;std::__regex::_State&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-1314'>
+      <class-decl name='new_allocator&lt;std::__regex::_State&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='54' column='1' id='type-id-1315'>
         <member-type access='public'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1541'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='57' column='1' id='type-id-1542'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1451' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1542'/>
+          <typedef-decl name='pointer' type-id='type-id-1452' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='59' column='1' id='type-id-1543'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='const_pointer' type-id='type-id-1395' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1543'/>
+          <typedef-decl name='const_pointer' type-id='type-id-1396' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='60' column='1' id='type-id-1544'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1450' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1544'/>
+          <typedef-decl name='reference' type-id='type-id-1451' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-1545'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='const_reference' type-id='type-id-1394' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1545'/>
+          <typedef-decl name='const_reference' type-id='type-id-1395' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='62' column='1' id='type-id-1546'/>
         </member-type>
         <member-function access='public'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1315' is-artificial='yes'/>
+            <parameter type-id='type-id-1316' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1315' is-artificial='yes'/>
-            <parameter type-id='type-id-1327'/>
+            <parameter type-id='type-id-1316' is-artificial='yes'/>
+            <parameter type-id='type-id-1328'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~new_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1315' is-artificial='yes'/>
+            <parameter type-id='type-id-1316' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorINSt7__regex6_StateEE10deallocateEPS2_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1315' is-artificial='yes'/>
+            <parameter type-id='type-id-1316' is-artificial='yes'/>
+            <parameter type-id='type-id-1543'/>
             <parameter type-id='type-id-1542'/>
-            <parameter type-id='type-id-1541'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <function-type size-in-bits='64' id='type-id-1316'>
-      <parameter type-id='type-id-1331'/>
-      <parameter type-id='type-id-1388'/>
+    <function-type size-in-bits='64' id='type-id-1317'>
+      <parameter type-id='type-id-1332'/>
+      <parameter type-id='type-id-1389'/>
       <return type-id='type-id-40'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-1318'>
-      <parameter type-id='type-id-1420'/>
-      <parameter type-id='type-id-1331'/>
-      <parameter type-id='type-id-1514'/>
+    <function-type size-in-bits='64' id='type-id-1319'>
+      <parameter type-id='type-id-1421'/>
+      <parameter type-id='type-id-1332'/>
+      <parameter type-id='type-id-1515'/>
       <return type-id='type-id-40'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-1464'>
-      <parameter type-id='type-id-1331'/>
-      <parameter type-id='type-id-1388'/>
-      <parameter type-id='type-id-1447'/>
+    <function-type size-in-bits='64' id='type-id-1465'>
+      <parameter type-id='type-id-1332'/>
+      <parameter type-id='type-id-1389'/>
+      <parameter type-id='type-id-1448'/>
       <return type-id='type-id-5'/>
     </function-type>
-    <function-type size-in-bits='64' method-class-id='type-id-1436' id='type-id-1466'>
-      <parameter type-id='type-id-1437' is-artificial='yes'/>
+    <function-type size-in-bits='64' method-class-id='type-id-1437' id='type-id-1467'>
+      <parameter type-id='type-id-1438' is-artificial='yes'/>
       <return type-id='type-id-5'/>
     </function-type>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/functional.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-1511' size-in-bits='64' id='type-id-1512'/>
+    <pointer-type-def type-id='type-id-1512' size-in-bits='64' id='type-id-1513'/>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/future.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-1546' size-in-bits='64' id='type-id-1547'/>
-    <qualified-type-def type-id='type-id-1548' const='yes' id='type-id-1549'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1549' size-in-bits='64' id='type-id-1550'/>
-    <qualified-type-def type-id='type-id-1551' const='yes' id='type-id-1552'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1552' size-in-bits='64' id='type-id-1553'/>
-    <qualified-type-def type-id='type-id-1554' const='yes' id='type-id-1555'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1555' size-in-bits='64' id='type-id-1556'/>
-    <qualified-type-def type-id='type-id-1557' const='yes' id='type-id-1558'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1558' size-in-bits='64' id='type-id-1559'/>
-    <qualified-type-def type-id='type-id-1560' const='yes' id='type-id-1561'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1561' size-in-bits='64' id='type-id-1562'/>
-    <qualified-type-def type-id='type-id-1563' const='yes' id='type-id-1564'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1564' size-in-bits='64' id='type-id-1565'/>
-    <qualified-type-def type-id='type-id-1566' const='yes' id='type-id-1567'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1567' size-in-bits='64' id='type-id-1568'/>
-    <qualified-type-def type-id='type-id-1569' const='yes' id='type-id-1570'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1570' size-in-bits='64' id='type-id-1571'/>
-    <qualified-type-def type-id='type-id-1572' const='yes' id='type-id-1573'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1573' size-in-bits='64' id='type-id-1574'/>
-    <qualified-type-def type-id='type-id-1575' const='yes' id='type-id-1576'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1576' size-in-bits='64' id='type-id-1577'/>
-    <pointer-type-def type-id='type-id-1576' size-in-bits='64' id='type-id-1578'/>
-    <qualified-type-def type-id='type-id-1579' const='yes' id='type-id-1580'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1580' size-in-bits='64' id='type-id-1581'/>
-    <qualified-type-def type-id='type-id-574' const='yes' id='type-id-1582'/>
-    <qualified-type-def type-id='type-id-563' const='yes' id='type-id-1583'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1583' size-in-bits='64' id='type-id-567'/>
-    <qualified-type-def type-id='type-id-564' const='yes' id='type-id-1584'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1584' size-in-bits='64' id='type-id-1585'/>
-    <pointer-type-def type-id='type-id-1584' size-in-bits='64' id='type-id-565'/>
-    <qualified-type-def type-id='type-id-1586' const='yes' id='type-id-1587'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1587' size-in-bits='64' id='type-id-1588'/>
-    <pointer-type-def type-id='type-id-1587' size-in-bits='64' id='type-id-1589'/>
+    <pointer-type-def type-id='type-id-1547' size-in-bits='64' id='type-id-1548'/>
+    <qualified-type-def type-id='type-id-1549' const='yes' id='type-id-1550'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1550' size-in-bits='64' id='type-id-1551'/>
+    <qualified-type-def type-id='type-id-1552' const='yes' id='type-id-1553'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1553' size-in-bits='64' id='type-id-1554'/>
+    <qualified-type-def type-id='type-id-1555' const='yes' id='type-id-1556'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1556' size-in-bits='64' id='type-id-1557'/>
+    <qualified-type-def type-id='type-id-1558' const='yes' id='type-id-1559'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1559' size-in-bits='64' id='type-id-1560'/>
+    <qualified-type-def type-id='type-id-1561' const='yes' id='type-id-1562'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1562' size-in-bits='64' id='type-id-1563'/>
+    <qualified-type-def type-id='type-id-1564' const='yes' id='type-id-1565'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1565' size-in-bits='64' id='type-id-1566'/>
+    <qualified-type-def type-id='type-id-1567' const='yes' id='type-id-1568'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1568' size-in-bits='64' id='type-id-1569'/>
+    <qualified-type-def type-id='type-id-1570' const='yes' id='type-id-1571'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1571' size-in-bits='64' id='type-id-1572'/>
+    <qualified-type-def type-id='type-id-1573' const='yes' id='type-id-1574'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1574' size-in-bits='64' id='type-id-1575'/>
+    <qualified-type-def type-id='type-id-1576' const='yes' id='type-id-1577'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1577' size-in-bits='64' id='type-id-1578'/>
+    <pointer-type-def type-id='type-id-1577' size-in-bits='64' id='type-id-1579'/>
+    <qualified-type-def type-id='type-id-1580' const='yes' id='type-id-1581'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1581' size-in-bits='64' id='type-id-1582'/>
+    <qualified-type-def type-id='type-id-574' const='yes' id='type-id-1583'/>
+    <qualified-type-def type-id='type-id-563' const='yes' id='type-id-1584'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1584' size-in-bits='64' id='type-id-567'/>
+    <qualified-type-def type-id='type-id-564' const='yes' id='type-id-1585'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1585' size-in-bits='64' id='type-id-1586'/>
+    <pointer-type-def type-id='type-id-1585' size-in-bits='64' id='type-id-565'/>
+    <qualified-type-def type-id='type-id-1587' const='yes' id='type-id-1588'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1588' size-in-bits='64' id='type-id-1589'/>
+    <pointer-type-def type-id='type-id-1588' size-in-bits='64' id='type-id-1590'/>
     <reference-type-def kind='lvalue' type-id='type-id-293' size-in-bits='64' id='type-id-364'/>
-    <qualified-type-def type-id='type-id-1590' const='yes' id='type-id-1591'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1591' size-in-bits='64' id='type-id-1592'/>
-    <pointer-type-def type-id='type-id-1591' size-in-bits='64' id='type-id-1593'/>
-    <qualified-type-def type-id='type-id-1594' const='yes' id='type-id-1595'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1595' size-in-bits='64' id='type-id-1596'/>
-    <qualified-type-def type-id='type-id-1597' const='yes' id='type-id-1598'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1598' size-in-bits='64' id='type-id-1599'/>
-    <qualified-type-def type-id='type-id-1460' const='yes' id='type-id-1600'/>
-    <pointer-type-def type-id='type-id-1600' size-in-bits='64' id='type-id-1521'/>
-    <qualified-type-def type-id='type-id-1601' const='yes' id='type-id-1602'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1602' size-in-bits='64' id='type-id-1603'/>
-    <qualified-type-def type-id='type-id-1604' const='yes' id='type-id-1605'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1605' size-in-bits='64' id='type-id-1606'/>
-    <qualified-type-def type-id='type-id-1607' const='yes' id='type-id-1608'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1608' size-in-bits='64' id='type-id-1609'/>
-    <qualified-type-def type-id='type-id-1610' const='yes' id='type-id-1611'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1611' size-in-bits='64' id='type-id-1612'/>
-    <qualified-type-def type-id='type-id-1613' const='yes' id='type-id-1614'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1614' size-in-bits='64' id='type-id-1615'/>
-    <qualified-type-def type-id='type-id-569' const='yes' id='type-id-1616'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1616' size-in-bits='64' id='type-id-1617'/>
-    <pointer-type-def type-id='type-id-1616' size-in-bits='64' id='type-id-1618'/>
-    <qualified-type-def type-id='type-id-1619' const='yes' id='type-id-1620'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1620' size-in-bits='64' id='type-id-1621'/>
-    <qualified-type-def type-id='type-id-1622' const='yes' id='type-id-1623'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1623' size-in-bits='64' id='type-id-1624'/>
-    <pointer-type-def type-id='type-id-1623' size-in-bits='64' id='type-id-1625'/>
-    <qualified-type-def type-id='type-id-1626' const='yes' id='type-id-1627'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1627' size-in-bits='64' id='type-id-1628'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1548' size-in-bits='64' id='type-id-1629'/>
-    <pointer-type-def type-id='type-id-1548' size-in-bits='64' id='type-id-1630'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1551' size-in-bits='64' id='type-id-1631'/>
-    <pointer-type-def type-id='type-id-1551' size-in-bits='64' id='type-id-1632'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1554' size-in-bits='64' id='type-id-1633'/>
-    <pointer-type-def type-id='type-id-1554' size-in-bits='64' id='type-id-1634'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1557' size-in-bits='64' id='type-id-1635'/>
-    <pointer-type-def type-id='type-id-1557' size-in-bits='64' id='type-id-1636'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1560' size-in-bits='64' id='type-id-1637'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1563' size-in-bits='64' id='type-id-1638'/>
-    <pointer-type-def type-id='type-id-1563' size-in-bits='64' id='type-id-1639'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1566' size-in-bits='64' id='type-id-1640'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1569' size-in-bits='64' id='type-id-1641'/>
-    <pointer-type-def type-id='type-id-1569' size-in-bits='64' id='type-id-1642'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1572' size-in-bits='64' id='type-id-1643'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1575' size-in-bits='64' id='type-id-1644'/>
-    <pointer-type-def type-id='type-id-1575' size-in-bits='64' id='type-id-1645'/>
-    <reference-type-def kind='lvalue' type-id='type-id-574' size-in-bits='64' id='type-id-1646'/>
+    <qualified-type-def type-id='type-id-1591' const='yes' id='type-id-1592'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1592' size-in-bits='64' id='type-id-1593'/>
+    <pointer-type-def type-id='type-id-1592' size-in-bits='64' id='type-id-1594'/>
+    <qualified-type-def type-id='type-id-1595' const='yes' id='type-id-1596'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1596' size-in-bits='64' id='type-id-1597'/>
+    <qualified-type-def type-id='type-id-1598' const='yes' id='type-id-1599'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1599' size-in-bits='64' id='type-id-1600'/>
+    <qualified-type-def type-id='type-id-1461' const='yes' id='type-id-1601'/>
+    <pointer-type-def type-id='type-id-1601' size-in-bits='64' id='type-id-1522'/>
+    <qualified-type-def type-id='type-id-1602' const='yes' id='type-id-1603'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1603' size-in-bits='64' id='type-id-1604'/>
+    <qualified-type-def type-id='type-id-1605' const='yes' id='type-id-1606'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1606' size-in-bits='64' id='type-id-1607'/>
+    <qualified-type-def type-id='type-id-1608' const='yes' id='type-id-1609'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1609' size-in-bits='64' id='type-id-1610'/>
+    <qualified-type-def type-id='type-id-1611' const='yes' id='type-id-1612'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1612' size-in-bits='64' id='type-id-1613'/>
+    <qualified-type-def type-id='type-id-1614' const='yes' id='type-id-1615'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1615' size-in-bits='64' id='type-id-1616'/>
+    <qualified-type-def type-id='type-id-569' const='yes' id='type-id-1617'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1617' size-in-bits='64' id='type-id-1618'/>
+    <pointer-type-def type-id='type-id-1617' size-in-bits='64' id='type-id-1619'/>
+    <qualified-type-def type-id='type-id-1620' const='yes' id='type-id-1621'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1621' size-in-bits='64' id='type-id-1622'/>
+    <qualified-type-def type-id='type-id-1623' const='yes' id='type-id-1624'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1624' size-in-bits='64' id='type-id-1625'/>
+    <pointer-type-def type-id='type-id-1624' size-in-bits='64' id='type-id-1626'/>
+    <qualified-type-def type-id='type-id-1627' const='yes' id='type-id-1628'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1628' size-in-bits='64' id='type-id-1629'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1549' size-in-bits='64' id='type-id-1630'/>
+    <pointer-type-def type-id='type-id-1549' size-in-bits='64' id='type-id-1631'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1552' size-in-bits='64' id='type-id-1632'/>
+    <pointer-type-def type-id='type-id-1552' size-in-bits='64' id='type-id-1633'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1555' size-in-bits='64' id='type-id-1634'/>
+    <pointer-type-def type-id='type-id-1555' size-in-bits='64' id='type-id-1635'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1558' size-in-bits='64' id='type-id-1636'/>
+    <pointer-type-def type-id='type-id-1558' size-in-bits='64' id='type-id-1637'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1561' size-in-bits='64' id='type-id-1638'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1564' size-in-bits='64' id='type-id-1639'/>
+    <pointer-type-def type-id='type-id-1564' size-in-bits='64' id='type-id-1640'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1567' size-in-bits='64' id='type-id-1641'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1570' size-in-bits='64' id='type-id-1642'/>
+    <pointer-type-def type-id='type-id-1570' size-in-bits='64' id='type-id-1643'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1573' size-in-bits='64' id='type-id-1644'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1576' size-in-bits='64' id='type-id-1645'/>
+    <pointer-type-def type-id='type-id-1576' size-in-bits='64' id='type-id-1646'/>
+    <reference-type-def kind='lvalue' type-id='type-id-574' size-in-bits='64' id='type-id-1647'/>
     <pointer-type-def type-id='type-id-574' size-in-bits='64' id='type-id-575'/>
-    <qualified-type-def type-id='type-id-575' const='yes' id='type-id-1647'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1647' size-in-bits='64' id='type-id-1648'/>
-    <reference-type-def kind='lvalue' type-id='type-id-575' size-in-bits='64' id='type-id-1649'/>
-    <reference-type-def kind='lvalue' type-id='type-id-563' size-in-bits='64' id='type-id-1650'/>
+    <qualified-type-def type-id='type-id-575' const='yes' id='type-id-1648'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1648' size-in-bits='64' id='type-id-1649'/>
+    <reference-type-def kind='lvalue' type-id='type-id-575' size-in-bits='64' id='type-id-1650'/>
+    <reference-type-def kind='lvalue' type-id='type-id-563' size-in-bits='64' id='type-id-1651'/>
     <pointer-type-def type-id='type-id-563' size-in-bits='64' id='type-id-566'/>
-    <qualified-type-def type-id='type-id-566' const='yes' id='type-id-1651'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1651' size-in-bits='64' id='type-id-1652'/>
-    <reference-type-def kind='lvalue' type-id='type-id-566' size-in-bits='64' id='type-id-1653'/>
-    <reference-type-def kind='lvalue' type-id='type-id-564' size-in-bits='64' id='type-id-1654'/>
-    <pointer-type-def type-id='type-id-571' size-in-bits='64' id='type-id-1655'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1586' size-in-bits='64' id='type-id-1656'/>
-    <pointer-type-def type-id='type-id-1586' size-in-bits='64' id='type-id-1657'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1590' size-in-bits='64' id='type-id-1658'/>
-    <pointer-type-def type-id='type-id-1590' size-in-bits='64' id='type-id-1659'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1594' size-in-bits='64' id='type-id-1660'/>
-    <pointer-type-def type-id='type-id-1594' size-in-bits='64' id='type-id-1661'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1601' size-in-bits='64' id='type-id-1662'/>
-    <pointer-type-def type-id='type-id-1601' size-in-bits='64' id='type-id-572'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1663' size-in-bits='64' id='type-id-1664'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1604' size-in-bits='64' id='type-id-1665'/>
-    <pointer-type-def type-id='type-id-1604' size-in-bits='64' id='type-id-1666'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1607' size-in-bits='64' id='type-id-1667'/>
-    <pointer-type-def type-id='type-id-1607' size-in-bits='64' id='type-id-1668'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1610' size-in-bits='64' id='type-id-1669'/>
-    <pointer-type-def type-id='type-id-1610' size-in-bits='64' id='type-id-1670'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1613' size-in-bits='64' id='type-id-1671'/>
-    <pointer-type-def type-id='type-id-1613' size-in-bits='64' id='type-id-1672'/>
-    <reference-type-def kind='lvalue' type-id='type-id-569' size-in-bits='64' id='type-id-1673'/>
-    <pointer-type-def type-id='type-id-569' size-in-bits='64' id='type-id-1674'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1619' size-in-bits='64' id='type-id-1675'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1622' size-in-bits='64' id='type-id-1676'/>
-    <pointer-type-def type-id='type-id-1622' size-in-bits='64' id='type-id-1677'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1626' size-in-bits='64' id='type-id-1678'/>
+    <qualified-type-def type-id='type-id-566' const='yes' id='type-id-1652'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1652' size-in-bits='64' id='type-id-1653'/>
+    <reference-type-def kind='lvalue' type-id='type-id-566' size-in-bits='64' id='type-id-1654'/>
+    <reference-type-def kind='lvalue' type-id='type-id-564' size-in-bits='64' id='type-id-1655'/>
+    <pointer-type-def type-id='type-id-571' size-in-bits='64' id='type-id-1656'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1587' size-in-bits='64' id='type-id-1657'/>
+    <pointer-type-def type-id='type-id-1587' size-in-bits='64' id='type-id-1658'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1591' size-in-bits='64' id='type-id-1659'/>
+    <pointer-type-def type-id='type-id-1591' size-in-bits='64' id='type-id-1660'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1595' size-in-bits='64' id='type-id-1661'/>
+    <pointer-type-def type-id='type-id-1595' size-in-bits='64' id='type-id-1662'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1602' size-in-bits='64' id='type-id-1663'/>
+    <pointer-type-def type-id='type-id-1602' size-in-bits='64' id='type-id-572'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1664' size-in-bits='64' id='type-id-1665'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1605' size-in-bits='64' id='type-id-1666'/>
+    <pointer-type-def type-id='type-id-1605' size-in-bits='64' id='type-id-1667'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1608' size-in-bits='64' id='type-id-1668'/>
+    <pointer-type-def type-id='type-id-1608' size-in-bits='64' id='type-id-1669'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1611' size-in-bits='64' id='type-id-1670'/>
+    <pointer-type-def type-id='type-id-1611' size-in-bits='64' id='type-id-1671'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1614' size-in-bits='64' id='type-id-1672'/>
+    <pointer-type-def type-id='type-id-1614' size-in-bits='64' id='type-id-1673'/>
+    <reference-type-def kind='lvalue' type-id='type-id-569' size-in-bits='64' id='type-id-1674'/>
+    <pointer-type-def type-id='type-id-569' size-in-bits='64' id='type-id-1675'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1620' size-in-bits='64' id='type-id-1676'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1623' size-in-bits='64' id='type-id-1677'/>
+    <pointer-type-def type-id='type-id-1623' size-in-bits='64' id='type-id-1678'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1627' size-in-bits='64' id='type-id-1679'/>
     <namespace-decl name='std'>
-      <class-decl name='shared_ptr&lt;std::__future_base::_State_base&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h' line='93' column='1' id='type-id-1607'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1586'/>
+      <class-decl name='shared_ptr&lt;std::__future_base::_State_base&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h' line='93' column='1' id='type-id-1608'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1587'/>
         <member-function access='private'>
           <function-decl name='shared_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1668' is-artificial='yes'/>
+            <parameter type-id='type-id-1669' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='shared_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1668' is-artificial='yes'/>
-            <parameter type-id='type-id-1609'/>
+            <parameter type-id='type-id-1669' is-artificial='yes'/>
+            <parameter type-id='type-id-1610'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='shared_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1668' is-artificial='yes'/>
-            <parameter type-id='type-id-1667'/>
+            <parameter type-id='type-id-1669' is-artificial='yes'/>
+            <parameter type-id='type-id-1668'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__shared_ptr&lt;std::__future_base::_State_base, (__gnu_cxx::_Lock_policy)2u&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='760' column='1' id='type-id-1586'>
+      <class-decl name='__shared_ptr&lt;std::__future_base::_State_base, (__gnu_cxx::_Lock_policy)2u&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='760' column='1' id='type-id-1587'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_ptr' type-id='type-id-498' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='1061' column='1'/>
         </data-member>
@@ -20759,336 +20765,336 @@ 
         </data-member>
         <member-function access='private'>
           <function-decl name='__shared_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='765' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1657' is-artificial='yes'/>
+            <parameter type-id='type-id-1658' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__shared_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='811' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1657' is-artificial='yes'/>
-            <parameter type-id='type-id-1588'/>
+            <parameter type-id='type-id-1658' is-artificial='yes'/>
+            <parameter type-id='type-id-1589'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__shared_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1657' is-artificial='yes'/>
+            <parameter type-id='type-id-1658' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__shared_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='821' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1657' is-artificial='yes'/>
-            <parameter type-id='type-id-1656'/>
+            <parameter type-id='type-id-1658' is-artificial='yes'/>
+            <parameter type-id='type-id-1657'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='unique_ptr&lt;std::__future_base::_Result&lt;void&gt;, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='88' column='1' id='type-id-569'>
         <member-type access='private'>
-          <class-decl name='_Pointer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='91' column='1' id='type-id-1679'>
+          <class-decl name='_Pointer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='91' column='1' id='type-id-1680'>
             <member-type access='private'>
-              <typedef-decl name='type' type-id='type-id-575' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='102' column='1' id='type-id-1680'/>
+              <typedef-decl name='type' type-id='type-id-575' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='102' column='1' id='type-id-1681'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__tuple_type' type-id='type-id-1610' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='105' column='1' id='type-id-1681'/>
+          <typedef-decl name='__tuple_type' type-id='type-id-1611' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='105' column='1' id='type-id-1682'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-1680' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='109' column='1' id='type-id-1682'/>
+          <typedef-decl name='pointer' type-id='type-id-1681' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='109' column='1' id='type-id-1683'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='deleter_type' type-id='type-id-564' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='111' column='1' id='type-id-1619'/>
+          <typedef-decl name='deleter_type' type-id='type-id-564' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='111' column='1' id='type-id-1620'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_t' type-id='type-id-1681' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='106' column='1'/>
+          <var-decl name='_M_t' type-id='type-id-1682' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='106' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1674' is-artificial='yes'/>
+            <parameter type-id='type-id-1675' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1674' is-artificial='yes'/>
-            <parameter type-id='type-id-1682'/>
+            <parameter type-id='type-id-1675' is-artificial='yes'/>
+            <parameter type-id='type-id-1683'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1674' is-artificial='yes'/>
-            <parameter type-id='type-id-1682'/>
+            <parameter type-id='type-id-1675' is-artificial='yes'/>
             <parameter type-id='type-id-1683'/>
+            <parameter type-id='type-id-1684'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1674' is-artificial='yes'/>
-            <parameter type-id='type-id-1682'/>
-            <parameter type-id='type-id-1664'/>
+            <parameter type-id='type-id-1675' is-artificial='yes'/>
+            <parameter type-id='type-id-1683'/>
+            <parameter type-id='type-id-1665'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1674' is-artificial='yes'/>
-            <parameter type-id='type-id-1673'/>
+            <parameter type-id='type-id-1675' is-artificial='yes'/>
+            <parameter type-id='type-id-1674'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1674' is-artificial='yes'/>
+            <parameter type-id='type-id-1675' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1674' is-artificial='yes'/>
-            <parameter type-id='type-id-1617'/>
+            <parameter type-id='type-id-1675' is-artificial='yes'/>
+            <parameter type-id='type-id-1618'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='unique_ptr&lt;std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='88' column='1' id='type-id-1622'>
+      <class-decl name='unique_ptr&lt;std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='88' column='1' id='type-id-1623'>
         <member-type access='private'>
-          <class-decl name='_Pointer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='91' column='1' id='type-id-1684'>
+          <class-decl name='_Pointer' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='91' column='1' id='type-id-1685'>
             <member-type access='private'>
-              <typedef-decl name='type' type-id='type-id-566' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='102' column='1' id='type-id-1685'/>
+              <typedef-decl name='type' type-id='type-id-566' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='102' column='1' id='type-id-1686'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__tuple_type' type-id='type-id-1613' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='105' column='1' id='type-id-1686'/>
+          <typedef-decl name='__tuple_type' type-id='type-id-1614' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='105' column='1' id='type-id-1687'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-1685' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='109' column='1' id='type-id-1687'/>
+          <typedef-decl name='pointer' type-id='type-id-1686' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='109' column='1' id='type-id-1688'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='deleter_type' type-id='type-id-564' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='111' column='1' id='type-id-1626'/>
+          <typedef-decl name='deleter_type' type-id='type-id-564' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='111' column='1' id='type-id-1627'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_t' type-id='type-id-1686' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='106' column='1'/>
+          <var-decl name='_M_t' type-id='type-id-1687' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='106' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
-            <parameter type-id='type-id-1687'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
+            <parameter type-id='type-id-1688'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
-            <parameter type-id='type-id-1687'/>
-            <parameter type-id='type-id-1683'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
+            <parameter type-id='type-id-1688'/>
+            <parameter type-id='type-id-1684'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
-            <parameter type-id='type-id-1687'/>
-            <parameter type-id='type-id-1664'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
+            <parameter type-id='type-id-1688'/>
+            <parameter type-id='type-id-1665'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
-            <parameter type-id='type-id-1676'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
+            <parameter type-id='type-id-1677'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='unique_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
-            <parameter type-id='type-id-1624'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
+            <parameter type-id='type-id-1625'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='get_deleter' mangled-name='_ZNSt10unique_ptrINSt13__future_base12_Result_baseENS1_8_DeleterEE11get_deleterEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1677' is-artificial='yes'/>
-            <return type-id='type-id-1678'/>
+            <parameter type-id='type-id-1678' is-artificial='yes'/>
+            <return type-id='type-id-1679'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Maybe_unary_or_binary_function&lt;std::unique_ptr&lt;std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='511' column='1' id='type-id-1688'/>
-      <class-decl name='function&lt;std::unique_ptr&lt;std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter&gt;()&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2024' column='1' id='type-id-1590'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1688'/>
-        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1333'/>
+      <class-decl name='_Maybe_unary_or_binary_function&lt;std::unique_ptr&lt;std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='511' column='1' id='type-id-1689'/>
+      <class-decl name='function&lt;std::unique_ptr&lt;std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter&gt;()&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2024' column='1' id='type-id-1591'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1689'/>
+        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1334'/>
         <member-type access='private'>
-          <typedef-decl name='_Invoker_type' type-id='type-id-1547' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2267' column='1' id='type-id-1689'/>
+          <typedef-decl name='_Invoker_type' type-id='type-id-1548' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2267' column='1' id='type-id-1690'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_invoker' type-id='type-id-1689' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2268' column='1'/>
+          <var-decl name='_M_invoker' type-id='type-id-1690' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2268' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2041' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1659' is-artificial='yes'/>
+            <parameter type-id='type-id-1660' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2273' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1659' is-artificial='yes'/>
-            <parameter type-id='type-id-1592'/>
+            <parameter type-id='type-id-1660' is-artificial='yes'/>
+            <parameter type-id='type-id-1593'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='function' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='2068' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1659' is-artificial='yes'/>
-            <parameter type-id='type-id-1658'/>
+            <parameter type-id='type-id-1660' is-artificial='yes'/>
+            <parameter type-id='type-id-1659'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__basic_future&lt;void&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='552' column='1' id='type-id-1575'>
+      <class-decl name='__basic_future&lt;void&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='552' column='1' id='type-id-1576'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-562'/>
         <member-type access='protected'>
-          <typedef-decl name='__state_type' type-id='type-id-1607' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='555' column='1' id='type-id-1579'/>
+          <typedef-decl name='__state_type' type-id='type-id-1608' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='555' column='1' id='type-id-1580'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='__result_type' type-id='type-id-1646' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='556' column='1' id='type-id-1690'/>
+          <typedef-decl name='__result_type' type-id='type-id-1647' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='556' column='1' id='type-id-1691'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_state' type-id='type-id-1579' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='559' column='1'/>
+          <var-decl name='_M_state' type-id='type-id-1580' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='559' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__basic_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='563' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1645' is-artificial='yes'/>
-            <parameter type-id='type-id-1577'/>
+            <parameter type-id='type-id-1646' is-artificial='yes'/>
+            <parameter type-id='type-id-1578'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='__basic_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='611' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1645' is-artificial='yes'/>
-            <parameter type-id='type-id-1581'/>
+            <parameter type-id='type-id-1646' is-artificial='yes'/>
+            <parameter type-id='type-id-1582'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='__basic_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='619' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1645' is-artificial='yes'/>
-            <parameter type-id='type-id-1606'/>
+            <parameter type-id='type-id-1646' is-artificial='yes'/>
+            <parameter type-id='type-id-1607'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='__basic_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='623' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1645' is-artificial='yes'/>
-            <parameter type-id='type-id-1665'/>
+            <parameter type-id='type-id-1646' is-artificial='yes'/>
+            <parameter type-id='type-id-1666'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='__basic_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='627' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1645' is-artificial='yes'/>
-            <parameter type-id='type-id-1660'/>
+            <parameter type-id='type-id-1646' is-artificial='yes'/>
+            <parameter type-id='type-id-1661'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='__basic_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='629' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1645' is-artificial='yes'/>
+            <parameter type-id='type-id-1646' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='future&lt;void&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='728' column='1' id='type-id-1594'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1575'/>
+      <class-decl name='future&lt;void&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='728' column='1' id='type-id-1595'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1576'/>
         <member-type access='private'>
-          <typedef-decl name='__state_type' type-id='type-id-1579' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='737' column='1' id='type-id-1597'/>
+          <typedef-decl name='__state_type' type-id='type-id-1580' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='737' column='1' id='type-id-1598'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1661' is-artificial='yes'/>
-            <parameter type-id='type-id-1599'/>
+            <parameter type-id='type-id-1662' is-artificial='yes'/>
+            <parameter type-id='type-id-1600'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='743' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1661' is-artificial='yes'/>
+            <parameter type-id='type-id-1662' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='746' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1661' is-artificial='yes'/>
-            <parameter type-id='type-id-1660'/>
+            <parameter type-id='type-id-1662' is-artificial='yes'/>
+            <parameter type-id='type-id-1661'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='749' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1661' is-artificial='yes'/>
-            <parameter type-id='type-id-1596'/>
+            <parameter type-id='type-id-1662' is-artificial='yes'/>
+            <parameter type-id='type-id-1597'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='shared_future&lt;void&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='855' column='1' id='type-id-1604'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1575'/>
+      <class-decl name='shared_future&lt;void&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='855' column='1' id='type-id-1605'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1576'/>
         <member-function access='private'>
           <function-decl name='shared_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='860' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1666' is-artificial='yes'/>
+            <parameter type-id='type-id-1667' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='shared_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='863' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1666' is-artificial='yes'/>
-            <parameter type-id='type-id-1606'/>
+            <parameter type-id='type-id-1667' is-artificial='yes'/>
+            <parameter type-id='type-id-1607'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='shared_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='866' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1666' is-artificial='yes'/>
-            <parameter type-id='type-id-1660'/>
+            <parameter type-id='type-id-1667' is-artificial='yes'/>
+            <parameter type-id='type-id-1661'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='shared_future' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='871' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1666' is-artificial='yes'/>
-            <parameter type-id='type-id-1665'/>
+            <parameter type-id='type-id-1667' is-artificial='yes'/>
+            <parameter type-id='type-id-1666'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='promise&lt;void&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1106' column='1' id='type-id-1601'>
+      <class-decl name='promise&lt;void&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1106' column='1' id='type-id-1602'>
         <member-type access='private'>
-          <typedef-decl name='_Ptr_type' type-id='type-id-568' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1110' column='1' id='type-id-1691'/>
+          <typedef-decl name='_Ptr_type' type-id='type-id-568' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1110' column='1' id='type-id-1692'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_future' type-id='type-id-1607' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1113' column='1'/>
+          <var-decl name='_M_future' type-id='type-id-1608' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1113' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_storage' type-id='type-id-1691' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1114' column='1'/>
+          <var-decl name='_M_storage' type-id='type-id-1692' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1114' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='promise' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1117' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -21099,14 +21105,14 @@ 
         <member-function access='private'>
           <function-decl name='promise' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1122' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-572' is-artificial='yes'/>
-            <parameter type-id='type-id-1662'/>
+            <parameter type-id='type-id-1663'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='promise' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/future' line='1139' column='1' visibility='default' binding='global' size-in-bits='64'>
             <parameter type-id='type-id-572' is-artificial='yes'/>
-            <parameter type-id='type-id-1603'/>
+            <parameter type-id='type-id-1604'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -21118,302 +21124,302 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__add_ref&lt;std::__future_base::_Result_base*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='56' column='1' id='type-id-1692'>
+      <class-decl name='__add_ref&lt;std::__future_base::_Result_base*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='56' column='1' id='type-id-1693'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1653' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='57' column='1' id='type-id-1693'/>
+          <typedef-decl name='type' type-id='type-id-1654' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='57' column='1' id='type-id-1694'/>
         </member-type>
       </class-decl>
-      <class-decl name='__add_ref&lt;std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='56' column='1' id='type-id-1694'>
+      <class-decl name='__add_ref&lt;std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='56' column='1' id='type-id-1695'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1654' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='57' column='1' id='type-id-1695'/>
+          <typedef-decl name='type' type-id='type-id-1655' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='57' column='1' id='type-id-1696'/>
         </member-type>
       </class-decl>
-      <class-decl name='_Head_base&lt;1ul, std::__future_base::_Result_base::_Deleter, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='76' column='1' id='type-id-1554'>
+      <class-decl name='_Head_base&lt;1ul, std::__future_base::_Result_base::_Deleter, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='76' column='1' id='type-id-1555'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-564'/>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1634' is-artificial='yes'/>
+            <parameter type-id='type-id-1635' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1634' is-artificial='yes'/>
-            <parameter type-id='type-id-1585'/>
+            <parameter type-id='type-id-1635' is-artificial='yes'/>
+            <parameter type-id='type-id-1586'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1634' is-artificial='yes'/>
+            <parameter type-id='type-id-1635' is-artificial='yes'/>
             <parameter type-id='type-id-550'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='_M_head' mangled-name='_ZNSt10_Head_baseILm1ENSt13__future_base12_Result_base8_DeleterELb1EE7_M_headERS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1633'/>
-            <return type-id='type-id-1654'/>
+            <parameter type-id='type-id-1634'/>
+            <return type-id='type-id-1655'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Head_base&lt;0ul, std::__future_base::_Result&lt;void&gt;*, false&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='122' column='1' id='type-id-1548'>
+      <class-decl name='_Head_base&lt;0ul, std::__future_base::_Result&lt;void&gt;*, false&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='122' column='1' id='type-id-1549'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_head_impl' type-id='type-id-575' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='166' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1630' is-artificial='yes'/>
+            <parameter type-id='type-id-1631' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1630' is-artificial='yes'/>
-            <parameter type-id='type-id-1648'/>
+            <parameter type-id='type-id-1631' is-artificial='yes'/>
+            <parameter type-id='type-id-1649'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1630' is-artificial='yes'/>
+            <parameter type-id='type-id-1631' is-artificial='yes'/>
             <parameter type-id='type-id-550'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Head_base&lt;0ul, std::__future_base::_Result_base*, false&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='122' column='1' id='type-id-1551'>
+      <class-decl name='_Head_base&lt;0ul, std::__future_base::_Result_base*, false&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='122' column='1' id='type-id-1552'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_head_impl' type-id='type-id-566' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='166' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1632' is-artificial='yes'/>
+            <parameter type-id='type-id-1633' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1632' is-artificial='yes'/>
-            <parameter type-id='type-id-1652'/>
+            <parameter type-id='type-id-1633' is-artificial='yes'/>
+            <parameter type-id='type-id-1653'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Head_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1632' is-artificial='yes'/>
+            <parameter type-id='type-id-1633' is-artificial='yes'/>
             <parameter type-id='type-id-550'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='_M_head' mangled-name='_ZNSt10_Head_baseILm0EPNSt13__future_base12_Result_baseELb0EE7_M_headERS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1631'/>
-            <return type-id='type-id-1653'/>
+            <parameter type-id='type-id-1632'/>
+            <return type-id='type-id-1654'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Tuple_impl&lt;0ul, std::__future_base::_Result&lt;void&gt;*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='215' column='1' id='type-id-1557'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1569'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1548'/>
+      <class-decl name='_Tuple_impl&lt;0ul, std::__future_base::_Result&lt;void&gt;*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='215' column='1' id='type-id-1558'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1570'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1549'/>
         <member-type access='public'>
-          <typedef-decl name='_Inherited' type-id='type-id-1569' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='221' column='1' id='type-id-1560'/>
+          <typedef-decl name='_Inherited' type-id='type-id-1570' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='221' column='1' id='type-id-1561'/>
         </member-type>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='236' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1636' is-artificial='yes'/>
+            <parameter type-id='type-id-1637' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1636' is-artificial='yes'/>
-            <parameter type-id='type-id-1648'/>
-            <parameter type-id='type-id-1585'/>
+            <parameter type-id='type-id-1637' is-artificial='yes'/>
+            <parameter type-id='type-id-1649'/>
+            <parameter type-id='type-id-1586'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1636' is-artificial='yes'/>
-            <parameter type-id='type-id-1559'/>
+            <parameter type-id='type-id-1637' is-artificial='yes'/>
+            <parameter type-id='type-id-1560'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1636' is-artificial='yes'/>
-            <parameter type-id='type-id-1635'/>
+            <parameter type-id='type-id-1637' is-artificial='yes'/>
+            <parameter type-id='type-id-1636'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Tuple_impl&lt;0ul, std::__future_base::_Result_base*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='215' column='1' id='type-id-1563'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1569'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1551'/>
+      <class-decl name='_Tuple_impl&lt;0ul, std::__future_base::_Result_base*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='215' column='1' id='type-id-1564'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1570'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1552'/>
         <member-type access='public'>
-          <typedef-decl name='_Inherited' type-id='type-id-1569' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='221' column='1' id='type-id-1566'/>
+          <typedef-decl name='_Inherited' type-id='type-id-1570' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='221' column='1' id='type-id-1567'/>
         </member-type>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='236' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1639' is-artificial='yes'/>
+            <parameter type-id='type-id-1640' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1639' is-artificial='yes'/>
-            <parameter type-id='type-id-1652'/>
-            <parameter type-id='type-id-1585'/>
+            <parameter type-id='type-id-1640' is-artificial='yes'/>
+            <parameter type-id='type-id-1653'/>
+            <parameter type-id='type-id-1586'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1639' is-artificial='yes'/>
-            <parameter type-id='type-id-1565'/>
+            <parameter type-id='type-id-1640' is-artificial='yes'/>
+            <parameter type-id='type-id-1566'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1639' is-artificial='yes'/>
-            <parameter type-id='type-id-1638'/>
+            <parameter type-id='type-id-1640' is-artificial='yes'/>
+            <parameter type-id='type-id-1639'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='_M_head' mangled-name='_ZNSt11_Tuple_implILm0EIPNSt13__future_base12_Result_baseENS1_8_DeleterEEE7_M_headERS4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1638'/>
-            <return type-id='type-id-1653'/>
+            <parameter type-id='type-id-1639'/>
+            <return type-id='type-id-1654'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Tuple_impl&lt;1ul, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='215' column='1' id='type-id-1569'>
+      <class-decl name='_Tuple_impl&lt;1ul, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='215' column='1' id='type-id-1570'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-492'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1554'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1555'/>
         <member-type access='public'>
-          <typedef-decl name='_Inherited' type-id='type-id-492' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='221' column='1' id='type-id-1572'/>
+          <typedef-decl name='_Inherited' type-id='type-id-492' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='221' column='1' id='type-id-1573'/>
         </member-type>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='236' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1642' is-artificial='yes'/>
+            <parameter type-id='type-id-1643' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1642' is-artificial='yes'/>
-            <parameter type-id='type-id-1585'/>
+            <parameter type-id='type-id-1643' is-artificial='yes'/>
+            <parameter type-id='type-id-1586'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1642' is-artificial='yes'/>
-            <parameter type-id='type-id-1571'/>
+            <parameter type-id='type-id-1643' is-artificial='yes'/>
+            <parameter type-id='type-id-1572'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Tuple_impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1642' is-artificial='yes'/>
-            <parameter type-id='type-id-1641'/>
+            <parameter type-id='type-id-1643' is-artificial='yes'/>
+            <parameter type-id='type-id-1642'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='_M_head' mangled-name='_ZNSt11_Tuple_implILm1EINSt13__future_base12_Result_base8_DeleterEEE7_M_headERS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1641'/>
-            <return type-id='type-id-1654'/>
+            <parameter type-id='type-id-1642'/>
+            <return type-id='type-id-1655'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='tuple&lt;std::__future_base::_Result&lt;void&gt;*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='507' column='1' id='type-id-1610'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1557'/>
+      <class-decl name='tuple&lt;std::__future_base::_Result&lt;void&gt;*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='507' column='1' id='type-id-1611'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1558'/>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='512' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1670' is-artificial='yes'/>
+            <parameter type-id='type-id-1671' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='516' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1670' is-artificial='yes'/>
-            <parameter type-id='type-id-1648'/>
-            <parameter type-id='type-id-1585'/>
+            <parameter type-id='type-id-1671' is-artificial='yes'/>
+            <parameter type-id='type-id-1649'/>
+            <parameter type-id='type-id-1586'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='526' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1670' is-artificial='yes'/>
-            <parameter type-id='type-id-1612'/>
+            <parameter type-id='type-id-1671' is-artificial='yes'/>
+            <parameter type-id='type-id-1613'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1670' is-artificial='yes'/>
-            <parameter type-id='type-id-1669'/>
+            <parameter type-id='type-id-1671' is-artificial='yes'/>
+            <parameter type-id='type-id-1670'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='tuple&lt;std::__future_base::_Result_base*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='507' column='1' id='type-id-1613'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1563'/>
+      <class-decl name='tuple&lt;std::__future_base::_Result_base*, std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='507' column='1' id='type-id-1614'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1564'/>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='512' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1672' is-artificial='yes'/>
+            <parameter type-id='type-id-1673' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='516' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1672' is-artificial='yes'/>
-            <parameter type-id='type-id-1652'/>
-            <parameter type-id='type-id-1585'/>
+            <parameter type-id='type-id-1673' is-artificial='yes'/>
+            <parameter type-id='type-id-1653'/>
+            <parameter type-id='type-id-1586'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='526' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1672' is-artificial='yes'/>
-            <parameter type-id='type-id-1615'/>
+            <parameter type-id='type-id-1673' is-artificial='yes'/>
+            <parameter type-id='type-id-1616'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tuple' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1672' is-artificial='yes'/>
-            <parameter type-id='type-id-1671'/>
+            <parameter type-id='type-id-1673' is-artificial='yes'/>
+            <parameter type-id='type-id-1672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='remove_reference&lt;std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1326' column='1' id='type-id-1696'>
+      <class-decl name='remove_reference&lt;std::__future_base::_Result_base::_Deleter&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1326' column='1' id='type-id-1697'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-564' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1327' column='1' id='type-id-1663'/>
+          <typedef-decl name='type' type-id='type-id-564' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1327' column='1' id='type-id-1664'/>
         </member-type>
       </class-decl>
-      <class-decl name='__add_lvalue_reference_helper&lt;std::__future_base::_Result&lt;void&gt;, true, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1345' column='1' id='type-id-1697'>
+      <class-decl name='__add_lvalue_reference_helper&lt;std::__future_base::_Result&lt;void&gt;, true, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1345' column='1' id='type-id-1698'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1646' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1346' column='1' id='type-id-1698'/>
+          <typedef-decl name='type' type-id='type-id-1647' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1346' column='1' id='type-id-1699'/>
         </member-type>
       </class-decl>
-      <class-decl name='__add_lvalue_reference_helper&lt;std::__future_base::_Result_base, true, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1345' column='1' id='type-id-1699'>
+      <class-decl name='__add_lvalue_reference_helper&lt;std::__future_base::_Result_base, true, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1345' column='1' id='type-id-1700'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1650' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1346' column='1' id='type-id-1700'/>
+          <typedef-decl name='type' type-id='type-id-1651' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1346' column='1' id='type-id-1701'/>
         </member-type>
       </class-decl>
-      <class-decl name='__add_lvalue_reference_helper&lt;std::__future_base::_State_base, true, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1345' column='1' id='type-id-1701'>
+      <class-decl name='__add_lvalue_reference_helper&lt;std::__future_base::_State_base, true, false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1345' column='1' id='type-id-1702'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-497' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1346' column='1' id='type-id-1702'/>
+          <typedef-decl name='type' type-id='type-id-497' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1346' column='1' id='type-id-1703'/>
         </member-type>
       </class-decl>
-      <class-decl name='conditional&lt;false, std::__future_base::_Result_base::_Deleter, const std::__future_base::_Result_base::_Deleter&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1735' column='1' id='type-id-1703'>
+      <class-decl name='conditional&lt;false, std::__future_base::_Result_base::_Deleter, const std::__future_base::_Result_base::_Deleter&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1735' column='1' id='type-id-1704'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-1585' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1736' column='1' id='type-id-1683'/>
+          <typedef-decl name='type' type-id='type-id-1586' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1736' column='1' id='type-id-1684'/>
         </member-type>
       </class-decl>
       <function-decl name='future_category' mangled-name='_ZSt15future_categoryv' filepath='../../../.././libstdc++-v3/src/c++11/future.cc' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt15future_categoryv@@GLIBCXX_3.4.15'>
@@ -21425,37 +21431,37 @@ 
         <return type-id='type-id-561'/>
       </function-decl>
       <function-decl name='__get_helper&lt;0ul, std::__future_base::_Result_base*, std::__future_base::_Result_base::_Deleter&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='728' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1638'/>
-        <return type-id='type-id-1693'/>
+        <parameter type-id='type-id-1639'/>
+        <return type-id='type-id-1694'/>
       </function-decl>
       <function-decl name='__get_helper&lt;1ul, std::__future_base::_Result_base::_Deleter&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='728' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1641'/>
-        <return type-id='type-id-1695'/>
+        <parameter type-id='type-id-1642'/>
+        <return type-id='type-id-1696'/>
       </function-decl>
       <function-decl name='get&lt;0ul, std::__future_base::_Result_base*, std::__future_base::_Result_base::_Deleter&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='743' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1671'/>
-        <return type-id='type-id-1693'/>
+        <parameter type-id='type-id-1672'/>
+        <return type-id='type-id-1694'/>
       </function-decl>
       <function-decl name='get&lt;1ul, std::__future_base::_Result_base*, std::__future_base::_Result_base::_Deleter&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='743' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1671'/>
-        <return type-id='type-id-1695'/>
+        <parameter type-id='type-id-1672'/>
+        <return type-id='type-id-1696'/>
       </function-decl>
     </namespace-decl>
-    <function-type size-in-bits='64' id='type-id-1546'>
-      <parameter type-id='type-id-1331'/>
-      <return type-id='type-id-1622'/>
+    <function-type size-in-bits='64' id='type-id-1547'>
+      <parameter type-id='type-id-1332'/>
+      <return type-id='type-id-1623'/>
     </function-type>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/hash_c++0x.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1704' const='yes' id='type-id-1705'/>
-    <pointer-type-def type-id='type-id-1705' size-in-bits='64' id='type-id-1706'/>
+    <qualified-type-def type-id='type-id-1705' const='yes' id='type-id-1706'/>
+    <pointer-type-def type-id='type-id-1706' size-in-bits='64' id='type-id-1707'/>
     <namespace-decl name='std'>
-      <class-decl name='__hash_base&lt;long unsigned int, long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/functional_hash.h' line='50' column='1' id='type-id-1707'/>
-      <class-decl name='hash&lt;long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/functional_hash.h' line='193' column='1' id='type-id-1704'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1707'/>
+      <class-decl name='__hash_base&lt;long unsigned int, long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/functional_hash.h' line='50' column='1' id='type-id-1708'/>
+      <class-decl name='hash&lt;long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/functional_hash.h' line='193' column='1' id='type-id-1705'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1708'/>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt4hashIeEclEe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/functional_hash.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt4hashIeEclEe@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-1706' is-artificial='yes'/>
+            <parameter type-id='type-id-1707' is-artificial='yes'/>
             <parameter type-id='type-id-375'/>
             <return type-id='type-id-91'/>
           </function-decl>
@@ -21466,15 +21472,15 @@ 
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/hashtable_c++0x.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
       <namespace-decl name='__detail'>
-        <var-decl name='__prime_list' type-id='type-id-1708' mangled-name='_ZNSt8__detail12__prime_listE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/../shared/hashtable-aux.cc' line='30' column='1' elf-symbol-id='_ZNSt8__detail12__prime_listE@@GLIBCXX_3.4.10'/>
+        <var-decl name='__prime_list' type-id='type-id-1709' mangled-name='_ZNSt8__detail12__prime_listE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/../shared/hashtable-aux.cc' line='30' column='1' elf-symbol-id='_ZNSt8__detail12__prime_listE@@GLIBCXX_3.4.10'/>
       </namespace-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/limits.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1709' const='yes' id='type-id-1710'/>
-    <qualified-type-def type-id='type-id-1711' const='yes' id='type-id-1712'/>
+    <qualified-type-def type-id='type-id-1710' const='yes' id='type-id-1711'/>
+    <qualified-type-def type-id='type-id-1712' const='yes' id='type-id-1713'/>
     <namespace-decl name='std'>
-      <enum-decl name='float_round_style' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='157' column='1' id='type-id-1711'>
+      <enum-decl name='float_round_style' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='157' column='1' id='type-id-1712'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='round_indeterminate' value='-1'/>
         <enumerator name='round_toward_zero' value='0'/>
@@ -21482,13 +21488,13 @@ 
         <enumerator name='round_toward_infinity' value='2'/>
         <enumerator name='round_toward_neg_infinity' value='3'/>
       </enum-decl>
-      <enum-decl name='float_denorm_style' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='172' column='1' id='type-id-1709'>
+      <enum-decl name='float_denorm_style' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='172' column='1' id='type-id-1710'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='denorm_indeterminate' value='-1'/>
         <enumerator name='denorm_absent' value='0'/>
         <enumerator name='denorm_present' value='1'/>
       </enum-decl>
-      <class-decl name='__numeric_limits_base' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='192' column='1' id='type-id-1713'>
+      <class-decl name='__numeric_limits_base' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='192' column='1' id='type-id-1714'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt21__numeric_limits_base14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='196' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -21535,7 +21541,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt21__numeric_limits_base17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='255' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt21__numeric_limits_base10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='258' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt21__numeric_limits_base10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='258' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt21__numeric_limits_base15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='262' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -21556,10 +21562,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt21__numeric_limits_base15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='283' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt21__numeric_limits_base11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='289' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt21__numeric_limits_base11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='289' column='1' elf-symbol-id='_ZNSt21__numeric_limits_base11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='371' column='1' id='type-id-1714'>
+      <class-decl name='numeric_limits&lt;bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='371' column='1' id='type-id-1715'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIbE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='373' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -21606,7 +21612,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIbE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='408' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIbE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='410' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIbE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='410' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIbE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='411' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -21627,10 +21633,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIbE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='433' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIbE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='435' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIbE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='435' column='1' elf-symbol-id='_ZNSt14numeric_limitsIbE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='440' column='1' id='type-id-1715'>
+      <class-decl name='numeric_limits&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='440' column='1' id='type-id-1716'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIcE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='442' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -21677,7 +21683,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIcE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='478' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIcE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='480' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIcE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='480' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIcE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='481' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -21698,10 +21704,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIcE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='500' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIcE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='502' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIcE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='502' column='1' elf-symbol-id='_ZNSt14numeric_limitsIcE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;signed char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='507' column='1' id='type-id-1716'>
+      <class-decl name='numeric_limits&lt;signed char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='507' column='1' id='type-id-1717'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIaE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='509' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -21748,7 +21754,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIaE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='546' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIaE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='548' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIaE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='548' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIaE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='549' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -21769,10 +21775,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIaE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='570' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIaE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='572' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIaE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='572' column='1' elf-symbol-id='_ZNSt14numeric_limitsIaE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;unsigned char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='577' column='1' id='type-id-1717'>
+      <class-decl name='numeric_limits&lt;unsigned char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='577' column='1' id='type-id-1718'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIhE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='579' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -21819,7 +21825,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIhE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='617' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIhE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='619' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIhE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='619' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIhE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='620' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -21840,10 +21846,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIhE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='643' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIhE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='645' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIhE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='645' column='1' elf-symbol-id='_ZNSt14numeric_limitsIhE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;wchar_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='650' column='1' id='type-id-1718'>
+      <class-decl name='numeric_limits&lt;wchar_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='650' column='1' id='type-id-1719'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIwE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='652' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -21890,7 +21896,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIwE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='689' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIwE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='691' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIwE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='691' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIwE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='692' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -21911,10 +21917,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIwE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='711' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIwE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='713' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIwE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='713' column='1' elf-symbol-id='_ZNSt14numeric_limitsIwE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;char16_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='719' column='1' id='type-id-1719'>
+      <class-decl name='numeric_limits&lt;char16_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='719' column='1' id='type-id-1720'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDsE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='721' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE14is_specializedE@@GLIBCXX_3.4.11'/>
         </data-member>
@@ -21961,7 +21967,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDsE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='753' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE17has_signaling_NaNE@@GLIBCXX_3.4.11'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIDsE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='754' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE10has_denormE@@GLIBCXX_3.4.11'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIDsE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='754' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE10has_denormE@@GLIBCXX_3.4.11'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDsE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='755' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE15has_denorm_lossE@@GLIBCXX_3.4.11'/>
@@ -21982,10 +21988,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDsE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='774' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE15tinyness_beforeE@@GLIBCXX_3.4.11'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIDsE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='775' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE11round_styleE@@GLIBCXX_3.4.11'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIDsE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='775' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDsE11round_styleE@@GLIBCXX_3.4.11'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;char32_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='780' column='1' id='type-id-1720'>
+      <class-decl name='numeric_limits&lt;char32_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='780' column='1' id='type-id-1721'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDiE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='782' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE14is_specializedE@@GLIBCXX_3.4.11'/>
         </data-member>
@@ -22032,7 +22038,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDiE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='814' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE17has_signaling_NaNE@@GLIBCXX_3.4.11'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIDiE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='815' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE10has_denormE@@GLIBCXX_3.4.11'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIDiE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='815' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE10has_denormE@@GLIBCXX_3.4.11'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDiE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='816' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE15has_denorm_lossE@@GLIBCXX_3.4.11'/>
@@ -22053,10 +22059,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIDiE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='835' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE15tinyness_beforeE@@GLIBCXX_3.4.11'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIDiE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='836' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE11round_styleE@@GLIBCXX_3.4.11'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIDiE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='836' column='1' elf-symbol-id='_ZNSt14numeric_limitsIDiE11round_styleE@@GLIBCXX_3.4.11'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;short int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='842' column='1' id='type-id-1721'>
+      <class-decl name='numeric_limits&lt;short int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='842' column='1' id='type-id-1722'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIsE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='844' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -22103,7 +22109,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIsE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='880' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIsE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='882' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIsE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='882' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIsE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='883' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -22124,10 +22130,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIsE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='902' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIsE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='904' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIsE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='904' column='1' elf-symbol-id='_ZNSt14numeric_limitsIsE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;short unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='909' column='1' id='type-id-1722'>
+      <class-decl name='numeric_limits&lt;short unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='909' column='1' id='type-id-1723'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsItE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='911' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -22174,7 +22180,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsItE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='949' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsItE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='951' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsItE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='951' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsItE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='952' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -22195,10 +22201,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsItE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='975' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsItE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='977' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsItE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='977' column='1' elf-symbol-id='_ZNSt14numeric_limitsItE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1049' column='1' id='type-id-1723'>
+      <class-decl name='numeric_limits&lt;unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1049' column='1' id='type-id-1724'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIjE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1051' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -22245,7 +22251,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIjE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1089' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIjE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1091' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIjE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1091' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIjE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1092' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -22266,10 +22272,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIjE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1114' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIjE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1116' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIjE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1116' column='1' elf-symbol-id='_ZNSt14numeric_limitsIjE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1188' column='1' id='type-id-1724'>
+      <class-decl name='numeric_limits&lt;long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1188' column='1' id='type-id-1725'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsImE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1190' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -22316,7 +22322,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsImE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1228' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsImE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1230' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsImE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1230' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsImE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1231' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -22337,10 +22343,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsImE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1254' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsImE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1256' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsImE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1256' column='1' elf-symbol-id='_ZNSt14numeric_limitsImE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;long long int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1261' column='1' id='type-id-1725'>
+      <class-decl name='numeric_limits&lt;long long int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1261' column='1' id='type-id-1726'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIxE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1263' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -22387,7 +22393,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIxE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1301' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIxE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1303' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIxE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1303' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIxE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1304' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -22408,10 +22414,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIxE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1324' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIxE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1326' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIxE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1326' column='1' elf-symbol-id='_ZNSt14numeric_limitsIxE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;long long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1331' column='1' id='type-id-1726'>
+      <class-decl name='numeric_limits&lt;long long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1331' column='1' id='type-id-1727'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIyE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1333' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -22458,7 +22464,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIyE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1371' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIyE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1373' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIyE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1373' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIyE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1374' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -22479,10 +22485,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIyE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1397' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIyE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1399' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIyE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1399' column='1' elf-symbol-id='_ZNSt14numeric_limitsIyE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;__int128&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1405' column='1' id='type-id-1727'>
+      <class-decl name='numeric_limits&lt;__int128&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1405' column='1' id='type-id-1728'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsInE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1407' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE14is_specializedE@@GLIBCXX_3.4.17'/>
         </data-member>
@@ -22529,7 +22535,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsInE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1445' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE17has_signaling_NaNE@@GLIBCXX_3.4.17'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsInE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1447' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE10has_denormE@@GLIBCXX_3.4.17'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsInE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1447' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE10has_denormE@@GLIBCXX_3.4.17'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsInE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1448' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE15has_denorm_lossE@@GLIBCXX_3.4.17'/>
@@ -22550,10 +22556,10 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsInE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1472' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE15tinyness_beforeE@@GLIBCXX_3.4.17'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsInE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1474' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE11round_styleE@@GLIBCXX_3.4.17'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsInE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1474' column='1' elf-symbol-id='_ZNSt14numeric_limitsInE11round_styleE@@GLIBCXX_3.4.17'/>
         </data-member>
       </class-decl>
-      <class-decl name='numeric_limits&lt;__int128 unsigned&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1479' column='1' id='type-id-1728'>
+      <class-decl name='numeric_limits&lt;__int128 unsigned&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1479' column='1' id='type-id-1729'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIoE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1481' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE14is_specializedE@@GLIBCXX_3.4.17'/>
         </data-member>
@@ -22600,7 +22606,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIoE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1519' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE17has_signaling_NaNE@@GLIBCXX_3.4.17'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIoE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1521' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE10has_denormE@@GLIBCXX_3.4.17'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIoE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1521' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE10has_denormE@@GLIBCXX_3.4.17'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIoE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1522' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE15has_denorm_lossE@@GLIBCXX_3.4.17'/>
@@ -22621,7 +22627,7 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIoE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1545' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE15tinyness_beforeE@@GLIBCXX_3.4.17'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIoE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1547' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE11round_styleE@@GLIBCXX_3.4.17'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIoE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1547' column='1' elf-symbol-id='_ZNSt14numeric_limitsIoE11round_styleE@@GLIBCXX_3.4.17'/>
         </data-member>
       </class-decl>
     </namespace-decl>
@@ -22636,139 +22642,139 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/placeholders.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1729' const='yes' id='type-id-1730'/>
-    <qualified-type-def type-id='type-id-1731' const='yes' id='type-id-1732'/>
-    <qualified-type-def type-id='type-id-1733' const='yes' id='type-id-1734'/>
-    <qualified-type-def type-id='type-id-1735' const='yes' id='type-id-1736'/>
-    <qualified-type-def type-id='type-id-1737' const='yes' id='type-id-1738'/>
-    <qualified-type-def type-id='type-id-1739' const='yes' id='type-id-1740'/>
-    <qualified-type-def type-id='type-id-1741' const='yes' id='type-id-1742'/>
-    <qualified-type-def type-id='type-id-1743' const='yes' id='type-id-1744'/>
-    <qualified-type-def type-id='type-id-1745' const='yes' id='type-id-1746'/>
-    <qualified-type-def type-id='type-id-1747' const='yes' id='type-id-1748'/>
-    <qualified-type-def type-id='type-id-1749' const='yes' id='type-id-1750'/>
-    <qualified-type-def type-id='type-id-1751' const='yes' id='type-id-1752'/>
-    <qualified-type-def type-id='type-id-1753' const='yes' id='type-id-1754'/>
-    <qualified-type-def type-id='type-id-1755' const='yes' id='type-id-1756'/>
-    <qualified-type-def type-id='type-id-1757' const='yes' id='type-id-1758'/>
-    <qualified-type-def type-id='type-id-1759' const='yes' id='type-id-1760'/>
-    <qualified-type-def type-id='type-id-1761' const='yes' id='type-id-1762'/>
-    <qualified-type-def type-id='type-id-1763' const='yes' id='type-id-1764'/>
-    <qualified-type-def type-id='type-id-1765' const='yes' id='type-id-1766'/>
-    <qualified-type-def type-id='type-id-1767' const='yes' id='type-id-1768'/>
-    <qualified-type-def type-id='type-id-1769' const='yes' id='type-id-1770'/>
-    <qualified-type-def type-id='type-id-1771' const='yes' id='type-id-1772'/>
-    <qualified-type-def type-id='type-id-1773' const='yes' id='type-id-1774'/>
-    <qualified-type-def type-id='type-id-1775' const='yes' id='type-id-1776'/>
-    <qualified-type-def type-id='type-id-1777' const='yes' id='type-id-1778'/>
-    <qualified-type-def type-id='type-id-1779' const='yes' id='type-id-1780'/>
-    <qualified-type-def type-id='type-id-1781' const='yes' id='type-id-1782'/>
-    <qualified-type-def type-id='type-id-1783' const='yes' id='type-id-1784'/>
-    <qualified-type-def type-id='type-id-1785' const='yes' id='type-id-1786'/>
+    <qualified-type-def type-id='type-id-1730' const='yes' id='type-id-1731'/>
+    <qualified-type-def type-id='type-id-1732' const='yes' id='type-id-1733'/>
+    <qualified-type-def type-id='type-id-1734' const='yes' id='type-id-1735'/>
+    <qualified-type-def type-id='type-id-1736' const='yes' id='type-id-1737'/>
+    <qualified-type-def type-id='type-id-1738' const='yes' id='type-id-1739'/>
+    <qualified-type-def type-id='type-id-1740' const='yes' id='type-id-1741'/>
+    <qualified-type-def type-id='type-id-1742' const='yes' id='type-id-1743'/>
+    <qualified-type-def type-id='type-id-1744' const='yes' id='type-id-1745'/>
+    <qualified-type-def type-id='type-id-1746' const='yes' id='type-id-1747'/>
+    <qualified-type-def type-id='type-id-1748' const='yes' id='type-id-1749'/>
+    <qualified-type-def type-id='type-id-1750' const='yes' id='type-id-1751'/>
+    <qualified-type-def type-id='type-id-1752' const='yes' id='type-id-1753'/>
+    <qualified-type-def type-id='type-id-1754' const='yes' id='type-id-1755'/>
+    <qualified-type-def type-id='type-id-1756' const='yes' id='type-id-1757'/>
+    <qualified-type-def type-id='type-id-1758' const='yes' id='type-id-1759'/>
+    <qualified-type-def type-id='type-id-1760' const='yes' id='type-id-1761'/>
+    <qualified-type-def type-id='type-id-1762' const='yes' id='type-id-1763'/>
+    <qualified-type-def type-id='type-id-1764' const='yes' id='type-id-1765'/>
+    <qualified-type-def type-id='type-id-1766' const='yes' id='type-id-1767'/>
+    <qualified-type-def type-id='type-id-1768' const='yes' id='type-id-1769'/>
+    <qualified-type-def type-id='type-id-1770' const='yes' id='type-id-1771'/>
+    <qualified-type-def type-id='type-id-1772' const='yes' id='type-id-1773'/>
+    <qualified-type-def type-id='type-id-1774' const='yes' id='type-id-1775'/>
+    <qualified-type-def type-id='type-id-1776' const='yes' id='type-id-1777'/>
+    <qualified-type-def type-id='type-id-1778' const='yes' id='type-id-1779'/>
+    <qualified-type-def type-id='type-id-1780' const='yes' id='type-id-1781'/>
+    <qualified-type-def type-id='type-id-1782' const='yes' id='type-id-1783'/>
+    <qualified-type-def type-id='type-id-1784' const='yes' id='type-id-1785'/>
+    <qualified-type-def type-id='type-id-1786' const='yes' id='type-id-1787'/>
     <namespace-decl name='std'>
-      <class-decl name='_Placeholder&lt;10&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1729'/>
-      <class-decl name='_Placeholder&lt;11&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1731'/>
-      <class-decl name='_Placeholder&lt;12&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1733'/>
-      <class-decl name='_Placeholder&lt;13&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1735'/>
-      <class-decl name='_Placeholder&lt;14&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1737'/>
-      <class-decl name='_Placeholder&lt;15&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1739'/>
-      <class-decl name='_Placeholder&lt;16&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1741'/>
-      <class-decl name='_Placeholder&lt;17&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1743'/>
-      <class-decl name='_Placeholder&lt;18&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1745'/>
-      <class-decl name='_Placeholder&lt;19&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1747'/>
-      <class-decl name='_Placeholder&lt;1&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1749'/>
-      <class-decl name='_Placeholder&lt;20&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1751'/>
-      <class-decl name='_Placeholder&lt;21&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1753'/>
-      <class-decl name='_Placeholder&lt;22&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1755'/>
-      <class-decl name='_Placeholder&lt;23&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1757'/>
-      <class-decl name='_Placeholder&lt;24&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1759'/>
-      <class-decl name='_Placeholder&lt;25&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1761'/>
-      <class-decl name='_Placeholder&lt;26&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1763'/>
-      <class-decl name='_Placeholder&lt;27&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1765'/>
-      <class-decl name='_Placeholder&lt;28&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1767'/>
-      <class-decl name='_Placeholder&lt;29&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1769'/>
-      <class-decl name='_Placeholder&lt;2&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1771'/>
-      <class-decl name='_Placeholder&lt;3&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1773'/>
-      <class-decl name='_Placeholder&lt;4&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1775'/>
-      <class-decl name='_Placeholder&lt;5&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1777'/>
-      <class-decl name='_Placeholder&lt;6&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1779'/>
-      <class-decl name='_Placeholder&lt;7&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1781'/>
-      <class-decl name='_Placeholder&lt;8&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1783'/>
-      <class-decl name='_Placeholder&lt;9&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1785'/>
+      <class-decl name='_Placeholder&lt;10&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1730'/>
+      <class-decl name='_Placeholder&lt;11&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1732'/>
+      <class-decl name='_Placeholder&lt;12&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1734'/>
+      <class-decl name='_Placeholder&lt;13&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1736'/>
+      <class-decl name='_Placeholder&lt;14&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1738'/>
+      <class-decl name='_Placeholder&lt;15&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1740'/>
+      <class-decl name='_Placeholder&lt;16&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1742'/>
+      <class-decl name='_Placeholder&lt;17&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1744'/>
+      <class-decl name='_Placeholder&lt;18&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1746'/>
+      <class-decl name='_Placeholder&lt;19&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1748'/>
+      <class-decl name='_Placeholder&lt;1&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1750'/>
+      <class-decl name='_Placeholder&lt;20&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1752'/>
+      <class-decl name='_Placeholder&lt;21&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1754'/>
+      <class-decl name='_Placeholder&lt;22&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1756'/>
+      <class-decl name='_Placeholder&lt;23&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1758'/>
+      <class-decl name='_Placeholder&lt;24&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1760'/>
+      <class-decl name='_Placeholder&lt;25&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1762'/>
+      <class-decl name='_Placeholder&lt;26&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1764'/>
+      <class-decl name='_Placeholder&lt;27&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1766'/>
+      <class-decl name='_Placeholder&lt;28&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1768'/>
+      <class-decl name='_Placeholder&lt;29&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1770'/>
+      <class-decl name='_Placeholder&lt;2&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1772'/>
+      <class-decl name='_Placeholder&lt;3&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1774'/>
+      <class-decl name='_Placeholder&lt;4&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1776'/>
+      <class-decl name='_Placeholder&lt;5&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1778'/>
+      <class-decl name='_Placeholder&lt;6&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1780'/>
+      <class-decl name='_Placeholder&lt;7&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1782'/>
+      <class-decl name='_Placeholder&lt;8&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1784'/>
+      <class-decl name='_Placeholder&lt;9&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='849' column='1' id='type-id-1786'/>
       <namespace-decl name='placeholders'>
-        <var-decl name='_1' type-id='type-id-1750' mangled-name='_ZNSt12placeholders2_1E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='36' column='1' elf-symbol-id='_ZNSt12placeholders2_1E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_2' type-id='type-id-1772' mangled-name='_ZNSt12placeholders2_2E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='37' column='1' elf-symbol-id='_ZNSt12placeholders2_2E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_3' type-id='type-id-1774' mangled-name='_ZNSt12placeholders2_3E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='38' column='1' elf-symbol-id='_ZNSt12placeholders2_3E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_4' type-id='type-id-1776' mangled-name='_ZNSt12placeholders2_4E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='39' column='1' elf-symbol-id='_ZNSt12placeholders2_4E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_5' type-id='type-id-1778' mangled-name='_ZNSt12placeholders2_5E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='40' column='1' elf-symbol-id='_ZNSt12placeholders2_5E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_6' type-id='type-id-1780' mangled-name='_ZNSt12placeholders2_6E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='41' column='1' elf-symbol-id='_ZNSt12placeholders2_6E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_7' type-id='type-id-1782' mangled-name='_ZNSt12placeholders2_7E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='42' column='1' elf-symbol-id='_ZNSt12placeholders2_7E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_8' type-id='type-id-1784' mangled-name='_ZNSt12placeholders2_8E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='43' column='1' elf-symbol-id='_ZNSt12placeholders2_8E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_9' type-id='type-id-1786' mangled-name='_ZNSt12placeholders2_9E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='44' column='1' elf-symbol-id='_ZNSt12placeholders2_9E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_10' type-id='type-id-1730' mangled-name='_ZNSt12placeholders3_10E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='45' column='1' elf-symbol-id='_ZNSt12placeholders3_10E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_11' type-id='type-id-1732' mangled-name='_ZNSt12placeholders3_11E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='46' column='1' elf-symbol-id='_ZNSt12placeholders3_11E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_12' type-id='type-id-1734' mangled-name='_ZNSt12placeholders3_12E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='47' column='1' elf-symbol-id='_ZNSt12placeholders3_12E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_13' type-id='type-id-1736' mangled-name='_ZNSt12placeholders3_13E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='48' column='1' elf-symbol-id='_ZNSt12placeholders3_13E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_14' type-id='type-id-1738' mangled-name='_ZNSt12placeholders3_14E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='49' column='1' elf-symbol-id='_ZNSt12placeholders3_14E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_15' type-id='type-id-1740' mangled-name='_ZNSt12placeholders3_15E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='50' column='1' elf-symbol-id='_ZNSt12placeholders3_15E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_16' type-id='type-id-1742' mangled-name='_ZNSt12placeholders3_16E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='51' column='1' elf-symbol-id='_ZNSt12placeholders3_16E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_17' type-id='type-id-1744' mangled-name='_ZNSt12placeholders3_17E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='52' column='1' elf-symbol-id='_ZNSt12placeholders3_17E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_18' type-id='type-id-1746' mangled-name='_ZNSt12placeholders3_18E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='53' column='1' elf-symbol-id='_ZNSt12placeholders3_18E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_19' type-id='type-id-1748' mangled-name='_ZNSt12placeholders3_19E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='54' column='1' elf-symbol-id='_ZNSt12placeholders3_19E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_20' type-id='type-id-1752' mangled-name='_ZNSt12placeholders3_20E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='55' column='1' elf-symbol-id='_ZNSt12placeholders3_20E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_21' type-id='type-id-1754' mangled-name='_ZNSt12placeholders3_21E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='56' column='1' elf-symbol-id='_ZNSt12placeholders3_21E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_22' type-id='type-id-1756' mangled-name='_ZNSt12placeholders3_22E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='57' column='1' elf-symbol-id='_ZNSt12placeholders3_22E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_23' type-id='type-id-1758' mangled-name='_ZNSt12placeholders3_23E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='58' column='1' elf-symbol-id='_ZNSt12placeholders3_23E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_24' type-id='type-id-1760' mangled-name='_ZNSt12placeholders3_24E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='59' column='1' elf-symbol-id='_ZNSt12placeholders3_24E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_25' type-id='type-id-1762' mangled-name='_ZNSt12placeholders3_25E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='60' column='1' elf-symbol-id='_ZNSt12placeholders3_25E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_26' type-id='type-id-1764' mangled-name='_ZNSt12placeholders3_26E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='61' column='1' elf-symbol-id='_ZNSt12placeholders3_26E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_27' type-id='type-id-1766' mangled-name='_ZNSt12placeholders3_27E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='62' column='1' elf-symbol-id='_ZNSt12placeholders3_27E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_28' type-id='type-id-1768' mangled-name='_ZNSt12placeholders3_28E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='63' column='1' elf-symbol-id='_ZNSt12placeholders3_28E@@GLIBCXX_3.4.15'/>
-        <var-decl name='_29' type-id='type-id-1770' mangled-name='_ZNSt12placeholders3_29E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='64' column='1' elf-symbol-id='_ZNSt12placeholders3_29E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_1' type-id='type-id-1751' mangled-name='_ZNSt12placeholders2_1E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='36' column='1' elf-symbol-id='_ZNSt12placeholders2_1E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_2' type-id='type-id-1773' mangled-name='_ZNSt12placeholders2_2E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='37' column='1' elf-symbol-id='_ZNSt12placeholders2_2E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_3' type-id='type-id-1775' mangled-name='_ZNSt12placeholders2_3E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='38' column='1' elf-symbol-id='_ZNSt12placeholders2_3E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_4' type-id='type-id-1777' mangled-name='_ZNSt12placeholders2_4E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='39' column='1' elf-symbol-id='_ZNSt12placeholders2_4E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_5' type-id='type-id-1779' mangled-name='_ZNSt12placeholders2_5E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='40' column='1' elf-symbol-id='_ZNSt12placeholders2_5E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_6' type-id='type-id-1781' mangled-name='_ZNSt12placeholders2_6E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='41' column='1' elf-symbol-id='_ZNSt12placeholders2_6E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_7' type-id='type-id-1783' mangled-name='_ZNSt12placeholders2_7E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='42' column='1' elf-symbol-id='_ZNSt12placeholders2_7E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_8' type-id='type-id-1785' mangled-name='_ZNSt12placeholders2_8E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='43' column='1' elf-symbol-id='_ZNSt12placeholders2_8E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_9' type-id='type-id-1787' mangled-name='_ZNSt12placeholders2_9E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='44' column='1' elf-symbol-id='_ZNSt12placeholders2_9E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_10' type-id='type-id-1731' mangled-name='_ZNSt12placeholders3_10E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='45' column='1' elf-symbol-id='_ZNSt12placeholders3_10E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_11' type-id='type-id-1733' mangled-name='_ZNSt12placeholders3_11E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='46' column='1' elf-symbol-id='_ZNSt12placeholders3_11E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_12' type-id='type-id-1735' mangled-name='_ZNSt12placeholders3_12E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='47' column='1' elf-symbol-id='_ZNSt12placeholders3_12E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_13' type-id='type-id-1737' mangled-name='_ZNSt12placeholders3_13E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='48' column='1' elf-symbol-id='_ZNSt12placeholders3_13E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_14' type-id='type-id-1739' mangled-name='_ZNSt12placeholders3_14E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='49' column='1' elf-symbol-id='_ZNSt12placeholders3_14E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_15' type-id='type-id-1741' mangled-name='_ZNSt12placeholders3_15E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='50' column='1' elf-symbol-id='_ZNSt12placeholders3_15E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_16' type-id='type-id-1743' mangled-name='_ZNSt12placeholders3_16E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='51' column='1' elf-symbol-id='_ZNSt12placeholders3_16E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_17' type-id='type-id-1745' mangled-name='_ZNSt12placeholders3_17E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='52' column='1' elf-symbol-id='_ZNSt12placeholders3_17E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_18' type-id='type-id-1747' mangled-name='_ZNSt12placeholders3_18E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='53' column='1' elf-symbol-id='_ZNSt12placeholders3_18E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_19' type-id='type-id-1749' mangled-name='_ZNSt12placeholders3_19E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='54' column='1' elf-symbol-id='_ZNSt12placeholders3_19E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_20' type-id='type-id-1753' mangled-name='_ZNSt12placeholders3_20E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='55' column='1' elf-symbol-id='_ZNSt12placeholders3_20E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_21' type-id='type-id-1755' mangled-name='_ZNSt12placeholders3_21E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='56' column='1' elf-symbol-id='_ZNSt12placeholders3_21E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_22' type-id='type-id-1757' mangled-name='_ZNSt12placeholders3_22E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='57' column='1' elf-symbol-id='_ZNSt12placeholders3_22E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_23' type-id='type-id-1759' mangled-name='_ZNSt12placeholders3_23E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='58' column='1' elf-symbol-id='_ZNSt12placeholders3_23E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_24' type-id='type-id-1761' mangled-name='_ZNSt12placeholders3_24E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='59' column='1' elf-symbol-id='_ZNSt12placeholders3_24E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_25' type-id='type-id-1763' mangled-name='_ZNSt12placeholders3_25E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='60' column='1' elf-symbol-id='_ZNSt12placeholders3_25E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_26' type-id='type-id-1765' mangled-name='_ZNSt12placeholders3_26E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='61' column='1' elf-symbol-id='_ZNSt12placeholders3_26E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_27' type-id='type-id-1767' mangled-name='_ZNSt12placeholders3_27E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='62' column='1' elf-symbol-id='_ZNSt12placeholders3_27E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_28' type-id='type-id-1769' mangled-name='_ZNSt12placeholders3_28E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='63' column='1' elf-symbol-id='_ZNSt12placeholders3_28E@@GLIBCXX_3.4.15'/>
+        <var-decl name='_29' type-id='type-id-1771' mangled-name='_ZNSt12placeholders3_29E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='64' column='1' elf-symbol-id='_ZNSt12placeholders3_29E@@GLIBCXX_3.4.15'/>
       </namespace-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/regex.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1787' const='yes' id='type-id-1788'/>
-    <pointer-type-def type-id='type-id-1788' size-in-bits='64' id='type-id-1789'/>
-    <pointer-type-def type-id='type-id-1787' size-in-bits='64' id='type-id-1790'/>
+    <qualified-type-def type-id='type-id-1788' const='yes' id='type-id-1789'/>
+    <pointer-type-def type-id='type-id-1789' size-in-bits='64' id='type-id-1790'/>
+    <pointer-type-def type-id='type-id-1788' size-in-bits='64' id='type-id-1791'/>
     <namespace-decl name='std'>
-      <class-decl name='regex_error' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_error.h' line='131' column='1' id='type-id-1787'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1522'/>
+      <class-decl name='regex_error' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_error.h' line='131' column='1' id='type-id-1788'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1523'/>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_code' type-id='type-id-1525' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_error.h' line='133' column='1'/>
+          <var-decl name='_M_code' type-id='type-id-1526' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/regex_error.h' line='133' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='regex_error' filepath='../../../.././libstdc++-v3/src/c++11/regex.cc' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1790' is-artificial='yes'/>
-            <parameter type-id='type-id-1525'/>
+            <parameter type-id='type-id-1791' is-artificial='yes'/>
+            <parameter type-id='type-id-1526'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='regex_error' mangled-name='_ZNSt11regex_errorC2ENSt15regex_constants10error_typeE' filepath='../../../.././libstdc++-v3/src/c++11/regex.cc' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1790' is-artificial='yes'/>
-            <parameter type-id='type-id-1525'/>
+            <parameter type-id='type-id-1791' is-artificial='yes'/>
+            <parameter type-id='type-id-1526'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~regex_error' filepath='../../../.././libstdc++-v3/src/c++11/regex.cc' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1790' is-artificial='yes'/>
+            <parameter type-id='type-id-1791' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~regex_error' mangled-name='_ZNSt11regex_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++11/regex.cc' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11regex_errorD0Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-1790' is-artificial='yes'/>
+            <parameter type-id='type-id-1791' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~regex_error' mangled-name='_ZNSt11regex_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++11/regex.cc' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11regex_errorD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-1790' is-artificial='yes'/>
+            <parameter type-id='type-id-1791' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -22777,36 +22783,36 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/shared_ptr.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1791' const='yes' id='type-id-1792'/>
-    <pointer-type-def type-id='type-id-1792' size-in-bits='64' id='type-id-1793'/>
-    <pointer-type-def type-id='type-id-1791' size-in-bits='64' id='type-id-1794'/>
+    <qualified-type-def type-id='type-id-1792' const='yes' id='type-id-1793'/>
+    <pointer-type-def type-id='type-id-1793' size-in-bits='64' id='type-id-1794'/>
+    <pointer-type-def type-id='type-id-1792' size-in-bits='64' id='type-id-1795'/>
     <namespace-decl name='std'>
-      <class-decl name='bad_weak_ptr' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='61' column='1' id='type-id-1791'>
+      <class-decl name='bad_weak_ptr' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='61' column='1' id='type-id-1792'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-11'/>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~bad_weak_ptr' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1794' is-artificial='yes'/>
+            <parameter type-id='type-id-1795' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~bad_weak_ptr' mangled-name='_ZNSt12bad_weak_ptrD0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12bad_weak_ptrD0Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-1794' is-artificial='yes'/>
+            <parameter type-id='type-id-1795' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~bad_weak_ptr' mangled-name='_ZNSt12bad_weak_ptrD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12bad_weak_ptrD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-1794' is-artificial='yes'/>
+            <parameter type-id='type-id-1795' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes' vtable-offset='2'>
           <function-decl name='what' mangled-name='_ZNKSt12bad_weak_ptr4whatEv' filepath='../../../.././libstdc++-v3/src/c++11/shared_ptr.cc' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt12bad_weak_ptr4whatEv@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-1793' is-artificial='yes'/>
+            <parameter type-id='type-id-1794' is-artificial='yes'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
@@ -22814,45 +22820,45 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/string-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-816' const='yes' id='type-id-1795'/>
-    <qualified-type-def type-id='type-id-856' const='yes' id='type-id-1796'/>
-    <qualified-type-def type-id='type-id-857' const='yes' id='type-id-1797'/>
-    <qualified-type-def type-id='type-id-866' const='yes' id='type-id-1798'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1798' size-in-bits='64' id='type-id-909'/>
-    <pointer-type-def type-id='type-id-1798' size-in-bits='64' id='type-id-1799'/>
-    <qualified-type-def type-id='type-id-864' const='yes' id='type-id-1800'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1800' size-in-bits='64' id='type-id-919'/>
-    <pointer-type-def type-id='type-id-1800' size-in-bits='64' id='type-id-1801'/>
-    <reference-type-def kind='lvalue' type-id='type-id-866' size-in-bits='64' id='type-id-1802'/>
+    <qualified-type-def type-id='type-id-816' const='yes' id='type-id-1796'/>
+    <qualified-type-def type-id='type-id-856' const='yes' id='type-id-1797'/>
+    <qualified-type-def type-id='type-id-857' const='yes' id='type-id-1798'/>
+    <qualified-type-def type-id='type-id-866' const='yes' id='type-id-1799'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1799' size-in-bits='64' id='type-id-909'/>
+    <pointer-type-def type-id='type-id-1799' size-in-bits='64' id='type-id-1800'/>
+    <qualified-type-def type-id='type-id-864' const='yes' id='type-id-1801'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1801' size-in-bits='64' id='type-id-919'/>
+    <pointer-type-def type-id='type-id-1801' size-in-bits='64' id='type-id-1802'/>
+    <reference-type-def kind='lvalue' type-id='type-id-866' size-in-bits='64' id='type-id-1803'/>
     <pointer-type-def type-id='type-id-866' size-in-bits='64' id='type-id-908'/>
-    <reference-type-def kind='lvalue' type-id='type-id-864' size-in-bits='64' id='type-id-1803'/>
+    <reference-type-def kind='lvalue' type-id='type-id-864' size-in-bits='64' id='type-id-1804'/>
     <pointer-type-def type-id='type-id-864' size-in-bits='64' id='type-id-918'/>
     <namespace-decl name='std'>
       <class-decl name='iterator&lt;std::random_access_iterator_tag, char, long int, char*, char&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='119' column='1' id='type-id-900'/>
       <class-decl name='iterator&lt;std::random_access_iterator_tag, char, long int, const char*, const char&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='119' column='1' id='type-id-910'/>
-      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1804'>
+      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1805'>
         <member-type access='public'>
-          <typedef-decl name='iterator_category' type-id='type-id-1099' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='152' column='1' id='type-id-1805'/>
+          <typedef-decl name='iterator_category' type-id='type-id-1100' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='152' column='1' id='type-id-1806'/>
         </member-type>
         <member-type access='public'>
           <typedef-decl name='difference_type' type-id='type-id-276' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='154' column='1' id='type-id-903'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1101' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-905'/>
+          <typedef-decl name='pointer' type-id='type-id-1102' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-905'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1100' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-907'/>
+          <typedef-decl name='reference' type-id='type-id-1101' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-907'/>
         </member-type>
       </class-decl>
-      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1806'>
+      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1807'>
         <member-type access='public'>
-          <typedef-decl name='difference_type' type-id='type-id-1102' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='154' column='1' id='type-id-913'/>
+          <typedef-decl name='difference_type' type-id='type-id-1103' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='154' column='1' id='type-id-913'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1106' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-915'/>
+          <typedef-decl name='pointer' type-id='type-id-1107' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-915'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1104' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-917'/>
+          <typedef-decl name='reference' type-id='type-id-1105' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-917'/>
         </member-type>
       </class-decl>
       <function-decl name='operator+&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' mangled-name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_@@GLIBCXX_3.4'>
@@ -22882,14 +22888,14 @@ 
         <return type-id='type-id-903'/>
       </function-decl>
       <function-decl name='__iterator_category&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char&gt; &gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <return type-id='type-id-1805'/>
+        <parameter type-id='type-id-1808'/>
+        <return type-id='type-id-1806'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='operator!=&lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='__is_null_pointer&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char&gt; &gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -22900,9 +22906,9 @@ 
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/system_error.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
     <reference-type-def kind='lvalue' type-id='type-id-296' size-in-bits='64' id='type-id-363'/>
-    <qualified-type-def type-id='type-id-1462' const='yes' id='type-id-1808'/>
-    <pointer-type-def type-id='type-id-1808' size-in-bits='64' id='type-id-1809'/>
-    <reference-type-def kind='lvalue' type-id='type-id-286' size-in-bits='64' id='type-id-1810'/>
+    <qualified-type-def type-id='type-id-1463' const='yes' id='type-id-1809'/>
+    <pointer-type-def type-id='type-id-1809' size-in-bits='64' id='type-id-1810'/>
+    <reference-type-def kind='lvalue' type-id='type-id-286' size-in-bits='64' id='type-id-1811'/>
     <pointer-type-def type-id='type-id-286' size-in-bits='64' id='type-id-362'/>
     <namespace-decl name='std'>
       <function-decl name='system_category' mangled-name='_ZSt15system_categoryv' filepath='../../../.././libstdc++-v3/src/c++11/system_error.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt15system_categoryv@@GLIBCXX_3.4.11'>
@@ -22919,12 +22925,12 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/thread.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <reference-type-def kind='lvalue' type-id='type-id-1811' size-in-bits='64' id='type-id-1812'/>
-    <reference-type-def kind='lvalue' type-id='type-id-527' size-in-bits='64' id='type-id-1813'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1812' size-in-bits='64' id='type-id-1813'/>
+    <reference-type-def kind='lvalue' type-id='type-id-527' size-in-bits='64' id='type-id-1814'/>
     <namespace-decl name='std'>
-      <class-decl name='remove_reference&lt;std::thread::_Impl_base*&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1330' column='1' id='type-id-1814'>
+      <class-decl name='remove_reference&lt;std::thread::_Impl_base*&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1330' column='1' id='type-id-1815'>
         <member-type access='public'>
-          <typedef-decl name='type' type-id='type-id-527' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1331' column='1' id='type-id-1811'/>
+          <typedef-decl name='type' type-id='type-id-527' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1331' column='1' id='type-id-1812'/>
         </member-type>
       </class-decl>
       <namespace-decl name=''>
@@ -22934,12 +22940,12 @@ 
         </function-decl>
       </namespace-decl>
       <function-decl name='move&lt;std::thread::_Impl_base*&amp;&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1813'/>
-        <return type-id='type-id-1812'/>
+        <parameter type-id='type-id-1814'/>
+        <return type-id='type-id-1813'/>
       </function-decl>
       <function-decl name='swap&lt;std::thread::_Impl_base*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1813'/>
-        <parameter type-id='type-id-1813'/>
+        <parameter type-id='type-id-1814'/>
+        <parameter type-id='type-id-1814'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='operator!=' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/thread' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -22953,45 +22959,45 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++11/wstring-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++11' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-822' const='yes' id='type-id-1815'/>
-    <qualified-type-def type-id='type-id-871' const='yes' id='type-id-1816'/>
-    <qualified-type-def type-id='type-id-872' const='yes' id='type-id-1817'/>
-    <qualified-type-def type-id='type-id-879' const='yes' id='type-id-1818'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1818' size-in-bits='64' id='type-id-929'/>
-    <pointer-type-def type-id='type-id-1818' size-in-bits='64' id='type-id-1819'/>
-    <qualified-type-def type-id='type-id-881' const='yes' id='type-id-1820'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1820' size-in-bits='64' id='type-id-939'/>
-    <pointer-type-def type-id='type-id-1820' size-in-bits='64' id='type-id-1821'/>
-    <reference-type-def kind='lvalue' type-id='type-id-879' size-in-bits='64' id='type-id-1822'/>
+    <qualified-type-def type-id='type-id-822' const='yes' id='type-id-1816'/>
+    <qualified-type-def type-id='type-id-871' const='yes' id='type-id-1817'/>
+    <qualified-type-def type-id='type-id-872' const='yes' id='type-id-1818'/>
+    <qualified-type-def type-id='type-id-879' const='yes' id='type-id-1819'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1819' size-in-bits='64' id='type-id-929'/>
+    <pointer-type-def type-id='type-id-1819' size-in-bits='64' id='type-id-1820'/>
+    <qualified-type-def type-id='type-id-881' const='yes' id='type-id-1821'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1821' size-in-bits='64' id='type-id-939'/>
+    <pointer-type-def type-id='type-id-1821' size-in-bits='64' id='type-id-1822'/>
+    <reference-type-def kind='lvalue' type-id='type-id-879' size-in-bits='64' id='type-id-1823'/>
     <pointer-type-def type-id='type-id-879' size-in-bits='64' id='type-id-928'/>
-    <reference-type-def kind='lvalue' type-id='type-id-881' size-in-bits='64' id='type-id-1823'/>
+    <reference-type-def kind='lvalue' type-id='type-id-881' size-in-bits='64' id='type-id-1824'/>
     <pointer-type-def type-id='type-id-881' size-in-bits='64' id='type-id-938'/>
     <namespace-decl name='std'>
       <class-decl name='iterator&lt;std::random_access_iterator_tag, wchar_t, long int, const wchar_t*, const wchar_t&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='119' column='1' id='type-id-920'/>
       <class-decl name='iterator&lt;std::random_access_iterator_tag, wchar_t, long int, wchar_t*, wchar_t&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='119' column='1' id='type-id-930'/>
-      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;const wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1824'>
+      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;const wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1825'>
         <member-type access='public'>
-          <typedef-decl name='difference_type' type-id='type-id-1112' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='154' column='1' id='type-id-923'/>
+          <typedef-decl name='difference_type' type-id='type-id-1113' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='154' column='1' id='type-id-923'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1116' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-925'/>
+          <typedef-decl name='pointer' type-id='type-id-1117' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-925'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1114' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-927'/>
+          <typedef-decl name='reference' type-id='type-id-1115' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-927'/>
         </member-type>
       </class-decl>
-      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1825'>
+      <class-decl name='__iterator_traits&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='150' column='1' id='type-id-1826'>
         <member-type access='public'>
-          <typedef-decl name='iterator_category' type-id='type-id-1122' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='152' column='1' id='type-id-1826'/>
+          <typedef-decl name='iterator_category' type-id='type-id-1123' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='152' column='1' id='type-id-1827'/>
         </member-type>
         <member-type access='public'>
           <typedef-decl name='difference_type' type-id='type-id-281' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='154' column='1' id='type-id-933'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-1124' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-935'/>
+          <typedef-decl name='pointer' type-id='type-id-1125' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='155' column='1' id='type-id-935'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-1123' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-937'/>
+          <typedef-decl name='reference' type-id='type-id-1124' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='156' column='1' id='type-id-937'/>
         </member-type>
       </class-decl>
       <function-decl name='operator+&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' mangled-name='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ERKS6_S8_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ERKS6_S8_@@GLIBCXX_3.4'>
@@ -23021,14 +23027,14 @@ 
         <return type-id='type-id-933'/>
       </function-decl>
       <function-decl name='__iterator_category&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <return type-id='type-id-1826'/>
+        <parameter type-id='type-id-1828'/>
+        <return type-id='type-id-1827'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='operator!=&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='__is_null_pointer&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -23040,210 +23046,210 @@ 
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/allocator-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/bitmap_allocator.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='64' id='type-id-1828'>
-      <subrange length='8' type-id='type-id-176' id='type-id-1829'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='64' id='type-id-1829'>
+      <subrange length='8' type-id='type-id-176' id='type-id-1830'/>
     </array-type-def>
-    <reference-type-def kind='lvalue' type-id='type-id-1830' size-in-bits='64' id='type-id-1831'/>
-    <pointer-type-def type-id='type-id-1830' size-in-bits='64' id='type-id-1832'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1833' size-in-bits='64' id='type-id-1834'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1835' size-in-bits='64' id='type-id-1836'/>
-    <pointer-type-def type-id='type-id-1835' size-in-bits='64' id='type-id-1837'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1838' size-in-bits='64' id='type-id-1839'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1840' size-in-bits='64' id='type-id-1841'/>
-    <pointer-type-def type-id='type-id-1840' size-in-bits='64' id='type-id-1842'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1843' size-in-bits='64' id='type-id-1844'/>
-    <pointer-type-def type-id='type-id-1843' size-in-bits='64' id='type-id-1845'/>
-    <pointer-type-def type-id='type-id-1846' size-in-bits='64' id='type-id-1847'/>
-    <pointer-type-def type-id='type-id-1848' size-in-bits='64' id='type-id-1849'/>
-    <pointer-type-def type-id='type-id-1850' size-in-bits='64' id='type-id-1851'/>
-    <pointer-type-def type-id='type-id-1852' size-in-bits='64' id='type-id-1853'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1854' size-in-bits='64' id='type-id-1855'/>
-    <pointer-type-def type-id='type-id-1854' size-in-bits='64' id='type-id-1856'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1857' size-in-bits='64' id='type-id-1858'/>
-    <pointer-type-def type-id='type-id-1857' size-in-bits='64' id='type-id-1859'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1860' size-in-bits='64' id='type-id-1861'/>
-    <pointer-type-def type-id='type-id-1860' size-in-bits='64' id='type-id-1862'/>
-    <pointer-type-def type-id='type-id-1863' size-in-bits='64' id='type-id-1864'/>
-    <pointer-type-def type-id='type-id-1865' size-in-bits='64' id='type-id-1866'/>
-    <qualified-type-def type-id='type-id-1866' const='yes' id='type-id-1867'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1867' size-in-bits='64' id='type-id-1868'/>
-    <pointer-type-def type-id='type-id-1869' size-in-bits='64' id='type-id-1870'/>
-    <pointer-type-def type-id='type-id-1871' size-in-bits='64' id='type-id-1872'/>
-    <qualified-type-def type-id='type-id-1872' const='yes' id='type-id-1873'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1873' size-in-bits='64' id='type-id-1874'/>
-    <pointer-type-def type-id='type-id-1875' size-in-bits='64' id='type-id-1876'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1877' size-in-bits='64' id='type-id-1878'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1879' size-in-bits='64' id='type-id-1880'/>
-    <qualified-type-def type-id='type-id-1830' const='yes' id='type-id-1881'/>
-    <pointer-type-def type-id='type-id-1881' size-in-bits='64' id='type-id-1882'/>
-    <qualified-type-def type-id='type-id-1835' const='yes' id='type-id-1883'/>
-    <pointer-type-def type-id='type-id-1883' size-in-bits='64' id='type-id-1884'/>
-    <qualified-type-def type-id='type-id-1840' const='yes' id='type-id-1885'/>
-    <pointer-type-def type-id='type-id-1885' size-in-bits='64' id='type-id-1886'/>
-    <qualified-type-def type-id='type-id-1843' const='yes' id='type-id-1887'/>
-    <pointer-type-def type-id='type-id-1887' size-in-bits='64' id='type-id-1888'/>
-    <qualified-type-def type-id='type-id-1850' const='yes' id='type-id-1889'/>
-    <pointer-type-def type-id='type-id-1889' size-in-bits='64' id='type-id-1890'/>
-    <qualified-type-def type-id='type-id-1852' const='yes' id='type-id-1891'/>
-    <pointer-type-def type-id='type-id-1891' size-in-bits='64' id='type-id-1892'/>
-    <qualified-type-def type-id='type-id-1854' const='yes' id='type-id-1893'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1893' size-in-bits='64' id='type-id-1894'/>
-    <pointer-type-def type-id='type-id-1893' size-in-bits='64' id='type-id-1895'/>
-    <qualified-type-def type-id='type-id-1896' const='yes' id='type-id-1897'/>
-    <qualified-type-def type-id='type-id-1898' const='yes' id='type-id-1899'/>
-    <qualified-type-def type-id='type-id-1857' const='yes' id='type-id-1900'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1900' size-in-bits='64' id='type-id-1901'/>
-    <pointer-type-def type-id='type-id-1900' size-in-bits='64' id='type-id-1902'/>
-    <qualified-type-def type-id='type-id-1903' const='yes' id='type-id-1904'/>
-    <qualified-type-def type-id='type-id-1905' const='yes' id='type-id-1906'/>
-    <qualified-type-def type-id='type-id-1860' const='yes' id='type-id-1907'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1907' size-in-bits='64' id='type-id-1908'/>
-    <pointer-type-def type-id='type-id-1907' size-in-bits='64' id='type-id-1909'/>
-    <qualified-type-def type-id='type-id-1910' const='yes' id='type-id-1911'/>
-    <qualified-type-def type-id='type-id-1912' const='yes' id='type-id-1913'/>
-    <qualified-type-def type-id='type-id-1863' const='yes' id='type-id-1914'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1914' size-in-bits='64' id='type-id-1915'/>
-    <pointer-type-def type-id='type-id-1914' size-in-bits='64' id='type-id-1916'/>
-    <qualified-type-def type-id='type-id-1917' const='yes' id='type-id-1918'/>
-    <qualified-type-def type-id='type-id-1919' const='yes' id='type-id-1920'/>
-    <qualified-type-def type-id='type-id-1921' const='yes' id='type-id-1922'/>
-    <qualified-type-def type-id='type-id-1869' const='yes' id='type-id-1923'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1923' size-in-bits='64' id='type-id-1924'/>
-    <pointer-type-def type-id='type-id-1923' size-in-bits='64' id='type-id-1925'/>
-    <qualified-type-def type-id='type-id-1926' const='yes' id='type-id-1927'/>
-    <qualified-type-def type-id='type-id-1928' const='yes' id='type-id-1929'/>
-    <qualified-type-def type-id='type-id-1930' const='yes' id='type-id-1931'/>
-    <qualified-type-def type-id='type-id-1932' const='yes' id='type-id-1933'/>
-    <pointer-type-def type-id='type-id-1933' size-in-bits='64' id='type-id-1934'/>
-    <qualified-type-def type-id='type-id-1879' const='yes' id='type-id-1935'/>
-    <qualified-type-def type-id='type-id-1936' const='yes' id='type-id-1937'/>
-    <pointer-type-def type-id='type-id-1937' size-in-bits='64' id='type-id-1938'/>
-    <qualified-type-def type-id='type-id-1939' const='yes' id='type-id-1940'/>
-    <pointer-type-def type-id='type-id-1940' size-in-bits='64' id='type-id-1941'/>
-    <qualified-type-def type-id='type-id-1942' const='yes' id='type-id-1943'/>
-    <pointer-type-def type-id='type-id-1943' size-in-bits='64' id='type-id-1944'/>
-    <qualified-type-def type-id='type-id-1945' const='yes' id='type-id-1946'/>
-    <pointer-type-def type-id='type-id-1946' size-in-bits='64' id='type-id-1947'/>
-    <qualified-type-def type-id='type-id-1948' const='yes' id='type-id-1949'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1949' size-in-bits='64' id='type-id-1950'/>
-    <qualified-type-def type-id='type-id-1951' const='yes' id='type-id-1952'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1952' size-in-bits='64' id='type-id-1953'/>
-    <qualified-type-def type-id='type-id-91' const='yes' id='type-id-1516'/>
-    <pointer-type-def type-id='type-id-1516' size-in-bits='64' id='type-id-1954'/>
-    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-1955'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1948' size-in-bits='64' id='type-id-1956'/>
-    <pointer-type-def type-id='type-id-1948' size-in-bits='64' id='type-id-1957'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1951' size-in-bits='64' id='type-id-1958'/>
-    <pointer-type-def type-id='type-id-1951' size-in-bits='64' id='type-id-1959'/>
-    <pointer-type-def type-id='type-id-91' size-in-bits='64' id='type-id-1960'/>
-    <pointer-type-def type-id='type-id-44' size-in-bits='64' id='type-id-1961'/>
-    <qualified-type-def type-id='type-id-1961' const='yes' id='type-id-1962'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1962' size-in-bits='64' id='type-id-1963'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1961' size-in-bits='64' id='type-id-1964'/>
-    <pointer-type-def type-id='type-id-1961' size-in-bits='64' id='type-id-1965'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1831' size-in-bits='64' id='type-id-1832'/>
+    <pointer-type-def type-id='type-id-1831' size-in-bits='64' id='type-id-1833'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1834' size-in-bits='64' id='type-id-1835'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1836' size-in-bits='64' id='type-id-1837'/>
+    <pointer-type-def type-id='type-id-1836' size-in-bits='64' id='type-id-1838'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1839' size-in-bits='64' id='type-id-1840'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1841' size-in-bits='64' id='type-id-1842'/>
+    <pointer-type-def type-id='type-id-1841' size-in-bits='64' id='type-id-1843'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1844' size-in-bits='64' id='type-id-1845'/>
+    <pointer-type-def type-id='type-id-1844' size-in-bits='64' id='type-id-1846'/>
+    <pointer-type-def type-id='type-id-1847' size-in-bits='64' id='type-id-1848'/>
+    <pointer-type-def type-id='type-id-1849' size-in-bits='64' id='type-id-1850'/>
+    <pointer-type-def type-id='type-id-1851' size-in-bits='64' id='type-id-1852'/>
+    <pointer-type-def type-id='type-id-1853' size-in-bits='64' id='type-id-1854'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1855' size-in-bits='64' id='type-id-1856'/>
+    <pointer-type-def type-id='type-id-1855' size-in-bits='64' id='type-id-1857'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1858' size-in-bits='64' id='type-id-1859'/>
+    <pointer-type-def type-id='type-id-1858' size-in-bits='64' id='type-id-1860'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1861' size-in-bits='64' id='type-id-1862'/>
+    <pointer-type-def type-id='type-id-1861' size-in-bits='64' id='type-id-1863'/>
+    <pointer-type-def type-id='type-id-1864' size-in-bits='64' id='type-id-1865'/>
+    <pointer-type-def type-id='type-id-1866' size-in-bits='64' id='type-id-1867'/>
+    <qualified-type-def type-id='type-id-1867' const='yes' id='type-id-1868'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1868' size-in-bits='64' id='type-id-1869'/>
+    <pointer-type-def type-id='type-id-1870' size-in-bits='64' id='type-id-1871'/>
+    <pointer-type-def type-id='type-id-1872' size-in-bits='64' id='type-id-1873'/>
+    <qualified-type-def type-id='type-id-1873' const='yes' id='type-id-1874'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1874' size-in-bits='64' id='type-id-1875'/>
+    <pointer-type-def type-id='type-id-1876' size-in-bits='64' id='type-id-1877'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1878' size-in-bits='64' id='type-id-1879'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1880' size-in-bits='64' id='type-id-1881'/>
+    <qualified-type-def type-id='type-id-1831' const='yes' id='type-id-1882'/>
+    <pointer-type-def type-id='type-id-1882' size-in-bits='64' id='type-id-1883'/>
+    <qualified-type-def type-id='type-id-1836' const='yes' id='type-id-1884'/>
+    <pointer-type-def type-id='type-id-1884' size-in-bits='64' id='type-id-1885'/>
+    <qualified-type-def type-id='type-id-1841' const='yes' id='type-id-1886'/>
+    <pointer-type-def type-id='type-id-1886' size-in-bits='64' id='type-id-1887'/>
+    <qualified-type-def type-id='type-id-1844' const='yes' id='type-id-1888'/>
+    <pointer-type-def type-id='type-id-1888' size-in-bits='64' id='type-id-1889'/>
+    <qualified-type-def type-id='type-id-1851' const='yes' id='type-id-1890'/>
+    <pointer-type-def type-id='type-id-1890' size-in-bits='64' id='type-id-1891'/>
+    <qualified-type-def type-id='type-id-1853' const='yes' id='type-id-1892'/>
+    <pointer-type-def type-id='type-id-1892' size-in-bits='64' id='type-id-1893'/>
+    <qualified-type-def type-id='type-id-1855' const='yes' id='type-id-1894'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1894' size-in-bits='64' id='type-id-1895'/>
+    <pointer-type-def type-id='type-id-1894' size-in-bits='64' id='type-id-1896'/>
+    <qualified-type-def type-id='type-id-1897' const='yes' id='type-id-1898'/>
+    <qualified-type-def type-id='type-id-1899' const='yes' id='type-id-1900'/>
+    <qualified-type-def type-id='type-id-1858' const='yes' id='type-id-1901'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1901' size-in-bits='64' id='type-id-1902'/>
+    <pointer-type-def type-id='type-id-1901' size-in-bits='64' id='type-id-1903'/>
+    <qualified-type-def type-id='type-id-1904' const='yes' id='type-id-1905'/>
+    <qualified-type-def type-id='type-id-1906' const='yes' id='type-id-1907'/>
+    <qualified-type-def type-id='type-id-1861' const='yes' id='type-id-1908'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1908' size-in-bits='64' id='type-id-1909'/>
+    <pointer-type-def type-id='type-id-1908' size-in-bits='64' id='type-id-1910'/>
+    <qualified-type-def type-id='type-id-1911' const='yes' id='type-id-1912'/>
+    <qualified-type-def type-id='type-id-1913' const='yes' id='type-id-1914'/>
+    <qualified-type-def type-id='type-id-1864' const='yes' id='type-id-1915'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1915' size-in-bits='64' id='type-id-1916'/>
+    <pointer-type-def type-id='type-id-1915' size-in-bits='64' id='type-id-1917'/>
+    <qualified-type-def type-id='type-id-1918' const='yes' id='type-id-1919'/>
+    <qualified-type-def type-id='type-id-1920' const='yes' id='type-id-1921'/>
+    <qualified-type-def type-id='type-id-1922' const='yes' id='type-id-1923'/>
+    <qualified-type-def type-id='type-id-1870' const='yes' id='type-id-1924'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1924' size-in-bits='64' id='type-id-1925'/>
+    <pointer-type-def type-id='type-id-1924' size-in-bits='64' id='type-id-1926'/>
+    <qualified-type-def type-id='type-id-1927' const='yes' id='type-id-1928'/>
+    <qualified-type-def type-id='type-id-1929' const='yes' id='type-id-1930'/>
+    <qualified-type-def type-id='type-id-1931' const='yes' id='type-id-1932'/>
+    <qualified-type-def type-id='type-id-1933' const='yes' id='type-id-1934'/>
+    <pointer-type-def type-id='type-id-1934' size-in-bits='64' id='type-id-1935'/>
+    <qualified-type-def type-id='type-id-1880' const='yes' id='type-id-1936'/>
+    <qualified-type-def type-id='type-id-1937' const='yes' id='type-id-1938'/>
+    <pointer-type-def type-id='type-id-1938' size-in-bits='64' id='type-id-1939'/>
+    <qualified-type-def type-id='type-id-1940' const='yes' id='type-id-1941'/>
+    <pointer-type-def type-id='type-id-1941' size-in-bits='64' id='type-id-1942'/>
+    <qualified-type-def type-id='type-id-1943' const='yes' id='type-id-1944'/>
+    <pointer-type-def type-id='type-id-1944' size-in-bits='64' id='type-id-1945'/>
+    <qualified-type-def type-id='type-id-1946' const='yes' id='type-id-1947'/>
+    <pointer-type-def type-id='type-id-1947' size-in-bits='64' id='type-id-1948'/>
+    <qualified-type-def type-id='type-id-1949' const='yes' id='type-id-1950'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1950' size-in-bits='64' id='type-id-1951'/>
+    <qualified-type-def type-id='type-id-1952' const='yes' id='type-id-1953'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1953' size-in-bits='64' id='type-id-1954'/>
+    <qualified-type-def type-id='type-id-91' const='yes' id='type-id-1517'/>
+    <pointer-type-def type-id='type-id-1517' size-in-bits='64' id='type-id-1955'/>
+    <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-1956'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1949' size-in-bits='64' id='type-id-1957'/>
+    <pointer-type-def type-id='type-id-1949' size-in-bits='64' id='type-id-1958'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1952' size-in-bits='64' id='type-id-1959'/>
+    <pointer-type-def type-id='type-id-1952' size-in-bits='64' id='type-id-1960'/>
+    <pointer-type-def type-id='type-id-91' size-in-bits='64' id='type-id-1961'/>
+    <pointer-type-def type-id='type-id-44' size-in-bits='64' id='type-id-1962'/>
+    <qualified-type-def type-id='type-id-1962' const='yes' id='type-id-1963'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1963' size-in-bits='64' id='type-id-1964'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1962' size-in-bits='64' id='type-id-1965'/>
+    <pointer-type-def type-id='type-id-1962' size-in-bits='64' id='type-id-1966'/>
     <namespace-decl name='std'>
-      <class-decl name='unary_function&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-1966'>
+      <class-decl name='unary_function&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-1967'>
         <member-type access='public'>
-          <typedef-decl name='argument_type' type-id='type-id-1948' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='106' column='1' id='type-id-1967'/>
+          <typedef-decl name='argument_type' type-id='type-id-1949' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='106' column='1' id='type-id-1968'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='result_type' type-id='type-id-40' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='109' column='1' id='type-id-1968'/>
+          <typedef-decl name='result_type' type-id='type-id-40' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='109' column='1' id='type-id-1969'/>
         </member-type>
       </class-decl>
-      <class-decl name='unary_function&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-1969'>
+      <class-decl name='unary_function&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-1970'>
         <member-type access='public'>
-          <typedef-decl name='argument_type' type-id='type-id-1951' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='106' column='1' id='type-id-1970'/>
+          <typedef-decl name='argument_type' type-id='type-id-1952' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='106' column='1' id='type-id-1971'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='result_type' type-id='type-id-40' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='109' column='1' id='type-id-1971'/>
+          <typedef-decl name='result_type' type-id='type-id-40' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='109' column='1' id='type-id-1972'/>
         </member-type>
       </class-decl>
-      <class-decl name='binary_function&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1972'/>
-      <class-decl name='binary_function&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1973'/>
-      <class-decl name='greater_equal&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='242' column='1' id='type-id-1936'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1972'/>
+      <class-decl name='binary_function&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1973'/>
+      <class-decl name='binary_function&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='116' column='1' id='type-id-1974'/>
+      <class-decl name='greater_equal&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='242' column='1' id='type-id-1937'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1973'/>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt13greater_equalIPN9__gnu_cxx16bitmap_allocatorIcE12_Alloc_blockEEclERKS4_S7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1938' is-artificial='yes'/>
-            <parameter type-id='type-id-1868'/>
-            <parameter type-id='type-id-1868'/>
+            <parameter type-id='type-id-1939' is-artificial='yes'/>
+            <parameter type-id='type-id-1869'/>
+            <parameter type-id='type-id-1869'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='greater_equal&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='242' column='1' id='type-id-1939'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1973'/>
+      <class-decl name='greater_equal&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='242' column='1' id='type-id-1940'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1974'/>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt13greater_equalIPN9__gnu_cxx16bitmap_allocatorIwE12_Alloc_blockEEclERKS4_S7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1941' is-artificial='yes'/>
-            <parameter type-id='type-id-1874'/>
-            <parameter type-id='type-id-1874'/>
+            <parameter type-id='type-id-1942' is-artificial='yes'/>
+            <parameter type-id='type-id-1875'/>
+            <parameter type-id='type-id-1875'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='less_equal&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='251' column='1' id='type-id-1942'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1972'/>
+      <class-decl name='less_equal&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='251' column='1' id='type-id-1943'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1973'/>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt10less_equalIPN9__gnu_cxx16bitmap_allocatorIcE12_Alloc_blockEEclERKS4_S7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1944' is-artificial='yes'/>
-            <parameter type-id='type-id-1868'/>
-            <parameter type-id='type-id-1868'/>
+            <parameter type-id='type-id-1945' is-artificial='yes'/>
+            <parameter type-id='type-id-1869'/>
+            <parameter type-id='type-id-1869'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='less_equal&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='251' column='1' id='type-id-1945'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1973'/>
+      <class-decl name='less_equal&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='251' column='1' id='type-id-1946'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1974'/>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt10less_equalIPN9__gnu_cxx16bitmap_allocatorIwE12_Alloc_blockEEclERKS4_S7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1947' is-artificial='yes'/>
-            <parameter type-id='type-id-1874'/>
-            <parameter type-id='type-id-1874'/>
+            <parameter type-id='type-id-1948' is-artificial='yes'/>
+            <parameter type-id='type-id-1875'/>
+            <parameter type-id='type-id-1875'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='88' column='1' id='type-id-1948'>
+      <class-decl name='pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='88' column='1' id='type-id-1949'>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='first' type-id='type-id-1866' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='93' column='1'/>
+          <var-decl name='first' type-id='type-id-1867' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='93' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='64'>
-          <var-decl name='second' type-id='type-id-1866' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='94' column='1'/>
+          <var-decl name='second' type-id='type-id-1867' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='94' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='pair' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1957' is-artificial='yes'/>
+            <parameter type-id='type-id-1958' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='pair' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1957' is-artificial='yes'/>
-            <parameter type-id='type-id-1868'/>
-            <parameter type-id='type-id-1868'/>
+            <parameter type-id='type-id-1958' is-artificial='yes'/>
+            <parameter type-id='type-id-1869'/>
+            <parameter type-id='type-id-1869'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='88' column='1' id='type-id-1951'>
+      <class-decl name='pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='88' column='1' id='type-id-1952'>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='first' type-id='type-id-1872' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='93' column='1'/>
+          <var-decl name='first' type-id='type-id-1873' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='93' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='64'>
-          <var-decl name='second' type-id='type-id-1872' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='94' column='1'/>
+          <var-decl name='second' type-id='type-id-1873' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='94' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='pair' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1959' is-artificial='yes'/>
+            <parameter type-id='type-id-1960' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='pair' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1959' is-artificial='yes'/>
-            <parameter type-id='type-id-1874'/>
-            <parameter type-id='type-id-1874'/>
+            <parameter type-id='type-id-1960' is-artificial='yes'/>
+            <parameter type-id='type-id-1875'/>
+            <parameter type-id='type-id-1875'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -23265,33 +23271,33 @@ 
         <return type-id='type-id-334'/>
       </function-decl>
       <function-decl name='make_pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1866'/>
-        <parameter type-id='type-id-1866'/>
-        <return type-id='type-id-1948'/>
+        <parameter type-id='type-id-1867'/>
+        <parameter type-id='type-id-1867'/>
+        <return type-id='type-id-1949'/>
       </function-decl>
       <function-decl name='make_pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_pair.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1872'/>
-        <parameter type-id='type-id-1872'/>
-        <return type-id='type-id-1951'/>
+        <parameter type-id='type-id-1873'/>
+        <parameter type-id='type-id-1873'/>
+        <return type-id='type-id-1952'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='free_list' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='522' column='1' id='type-id-1875'>
+      <class-decl name='free_list' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='522' column='1' id='type-id-1876'>
         <member-type access='private'>
-          <typedef-decl name='vector_type' type-id='type-id-1854' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='526' column='1' id='type-id-1879'/>
+          <typedef-decl name='vector_type' type-id='type-id-1855' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='526' column='1' id='type-id-1880'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iterator' type-id='type-id-1975' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='527' column='1' id='type-id-1974'/>
+          <typedef-decl name='iterator' type-id='type-id-1976' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='527' column='1' id='type-id-1975'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__mutex_type' type-id='type-id-61' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='528' column='1' id='type-id-1877'/>
+          <typedef-decl name='__mutex_type' type-id='type-id-61' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='528' column='1' id='type-id-1878'/>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_LT_pointer_compare' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='531' column='1' id='type-id-1932'>
+          <class-decl name='_LT_pointer_compare' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='531' column='1' id='type-id-1933'>
             <member-function access='public' const='yes'>
               <function-decl name='operator()' mangled-name='_ZNK9__gnu_cxx9free_list19_LT_pointer_compareclEPKmm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='534' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-1934' is-artificial='yes'/>
-                <parameter type-id='type-id-1954'/>
+                <parameter type-id='type-id-1935' is-artificial='yes'/>
+                <parameter type-id='type-id-1955'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-40'/>
               </function-decl>
@@ -23300,13 +23306,13 @@ 
         </member-type>
         <member-function access='private'>
           <function-decl name='_M_get_mutex' mangled-name='_ZN9__gnu_cxx9free_list12_M_get_mutexEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='541' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1876' is-artificial='yes'/>
-            <return type-id='type-id-1878'/>
+            <parameter type-id='type-id-1877' is-artificial='yes'/>
+            <return type-id='type-id-1879'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_should_i_give' mangled-name='_ZN9__gnu_cxx9free_list16_M_should_i_giveEmm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1876' is-artificial='yes'/>
+            <parameter type-id='type-id-1877' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-40'/>
@@ -23314,1160 +23320,1160 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_get_free_list' mangled-name='_ZN9__gnu_cxx9free_list16_M_get_free_listEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='549' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1876' is-artificial='yes'/>
-            <return type-id='type-id-1880'/>
+            <parameter type-id='type-id-1877' is-artificial='yes'/>
+            <return type-id='type-id-1881'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_clear' mangled-name='_ZN9__gnu_cxx9free_list8_M_clearEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='658' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx9free_list8_M_clearEv@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-1876' is-artificial='yes'/>
+            <parameter type-id='type-id-1877' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_validate' mangled-name='_ZN9__gnu_cxx9free_list11_M_validateEPm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='566' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1876' is-artificial='yes'/>
-            <parameter type-id='type-id-1960'/>
+            <parameter type-id='type-id-1877' is-artificial='yes'/>
+            <parameter type-id='type-id-1961'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_insert' mangled-name='_ZN9__gnu_cxx9free_list9_M_insertEPm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1876' is-artificial='yes'/>
-            <parameter type-id='type-id-1960'/>
+            <parameter type-id='type-id-1877' is-artificial='yes'/>
+            <parameter type-id='type-id-1961'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_get' mangled-name='_ZN9__gnu_cxx9free_list6_M_getEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='652' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx9free_list6_M_getEm@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-1876' is-artificial='yes'/>
+            <parameter type-id='type-id-1877' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <return type-id='type-id-1960'/>
+            <return type-id='type-id-1961'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='bitmap_allocator&lt;void&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='668' column='1' id='type-id-1976'>
+      <class-decl name='bitmap_allocator&lt;void&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='668' column='1' id='type-id-1977'>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-34' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='672' column='1' id='type-id-1977'/>
+          <typedef-decl name='const_pointer' type-id='type-id-34' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='672' column='1' id='type-id-1978'/>
         </member-type>
       </class-decl>
-      <class-decl name='bitmap_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='688' column='1' id='type-id-1863'>
-        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1875'/>
+      <class-decl name='bitmap_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='688' column='1' id='type-id-1864'>
+        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1876'/>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='691' column='1' id='type-id-1921'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='691' column='1' id='type-id-1922'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='693' column='1' id='type-id-1978'/>
+          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='693' column='1' id='type-id-1979'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='694' column='1' id='type-id-1979'/>
+          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='694' column='1' id='type-id-1980'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='695' column='1' id='type-id-1919'/>
+          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='695' column='1' id='type-id-1920'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='696' column='1' id='type-id-1917'/>
+          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='696' column='1' id='type-id-1918'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__mutex_type' type-id='type-id-1877' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='698' column='1' id='type-id-1980'/>
+          <typedef-decl name='__mutex_type' type-id='type-id-1878' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='698' column='1' id='type-id-1981'/>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Alloc_block' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='717' column='1' id='type-id-1865'>
+          <class-decl name='_Alloc_block' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='717' column='1' id='type-id-1866'>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='__M_unused' type-id='type-id-1828' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='720' column='1'/>
+              <var-decl name='__M_unused' type-id='type-id-1829' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='720' column='1'/>
             </data-member>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_Block_pair' type-id='type-id-1948' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='724' column='1' id='type-id-1981'/>
+          <typedef-decl name='_Block_pair' type-id='type-id-1949' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='724' column='1' id='type-id-1982'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_BPVector' type-id='type-id-1857' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='726' column='1' id='type-id-1982'/>
+          <typedef-decl name='_BPVector' type-id='type-id-1858' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='726' column='1' id='type-id-1983'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_BPiter' type-id='type-id-1984' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='727' column='1' id='type-id-1983'/>
+          <typedef-decl name='_BPiter' type-id='type-id-1985' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='727' column='1' id='type-id-1984'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_mem_blocks' type-id='type-id-1982' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE13_S_mem_blocksE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1089' column='1'/>
+          <var-decl name='_S_mem_blocks' type-id='type-id-1983' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE13_S_mem_blocksE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1089' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='_S_block_size' type-id='type-id-91' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE13_S_block_sizeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1092' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_last_request' type-id='type-id-1830' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE15_S_last_requestE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1102' column='1'/>
+          <var-decl name='_S_last_request' type-id='type-id-1831' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE15_S_last_requestE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1102' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_last_dealloc_index' type-id='type-id-1905' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE21_S_last_dealloc_indexE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1097' column='1'/>
+          <var-decl name='_S_last_dealloc_index' type-id='type-id-1906' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE21_S_last_dealloc_indexE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1097' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_mut' type-id='type-id-1980' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE6_S_mutE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1107' column='1'/>
+          <var-decl name='_S_mut' type-id='type-id-1981' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE6_S_mutE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1107' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1000' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1915'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1916'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~bitmap_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1007' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='_S_find&lt;__gnu_cxx::__detail::_Inclusive_between&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='731' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1850'/>
-            <return type-id='type-id-1983'/>
+            <parameter type-id='type-id-1851'/>
+            <return type-id='type-id-1984'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx16bitmap_allocatorIcE8max_sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1050' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1916' is-artificial='yes'/>
-            <return type-id='type-id-1921'/>
+            <parameter type-id='type-id-1917' is-artificial='yes'/>
+            <return type-id='type-id-1922'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_S_refill_pool' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE14_S_refill_poolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='764' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcEC2ERKS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1000' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1915'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1916'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~bitmap_allocator' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1007' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx16bitmap_allocatorIcE7addressERc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1042' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1916' is-artificial='yes'/>
-            <parameter type-id='type-id-1919'/>
-            <return type-id='type-id-1978'/>
+            <parameter type-id='type-id-1917' is-artificial='yes'/>
+            <parameter type-id='type-id-1920'/>
+            <return type-id='type-id-1979'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx16bitmap_allocatorIcE7addressERKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1046' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1916' is-artificial='yes'/>
-            <parameter type-id='type-id-1917'/>
-            <return type-id='type-id-1979'/>
+            <parameter type-id='type-id-1917' is-artificial='yes'/>
+            <parameter type-id='type-id-1918'/>
+            <return type-id='type-id-1980'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='construct' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE9constructEPcRKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1065' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1978'/>
-            <parameter type-id='type-id-1917'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1979'/>
+            <parameter type-id='type-id-1918'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='destroy' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE7destroyEPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1069' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1978'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1979'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='_S_find&lt;__gnu_cxx::__detail::_Functor_Ref&lt;__gnu_cxx::__detail::_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt; &gt;' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE7_S_findINS_8__detail12_Functor_RefINS3_12_Ffit_finderIPNS1_12_Alloc_blockEEEEEEEPSt4pairIS7_S7_ET_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='731' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1846'/>
-            <return type-id='type-id-1983'/>
+            <parameter type-id='type-id-1847'/>
+            <return type-id='type-id-1984'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_deallocate_single_object' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE27_M_deallocate_single_objectEPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='912' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1978'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1979'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_allocate_single_object' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE25_M_allocate_single_objectEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='822' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <return type-id='type-id-1978'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <return type-id='type-id-1979'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE8allocateEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1011' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1921'/>
-            <return type-id='type-id-1978'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1922'/>
+            <return type-id='type-id-1979'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE8allocateEmPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1026' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1921'/>
-            <parameter type-id='type-id-1977'/>
-            <return type-id='type-id-1978'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1922'/>
+            <parameter type-id='type-id-1978'/>
+            <return type-id='type-id-1979'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIcE10deallocateEPcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1030' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1864' is-artificial='yes'/>
-            <parameter type-id='type-id-1978'/>
-            <parameter type-id='type-id-1921'/>
+            <parameter type-id='type-id-1865' is-artificial='yes'/>
+            <parameter type-id='type-id-1979'/>
+            <parameter type-id='type-id-1922'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='bitmap_allocator&lt;wchar_t&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='688' column='1' id='type-id-1869'>
-        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1875'/>
+      <class-decl name='bitmap_allocator&lt;wchar_t&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='688' column='1' id='type-id-1870'>
+        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-1876'/>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='691' column='1' id='type-id-1930'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='691' column='1' id='type-id-1931'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='693' column='1' id='type-id-1985'/>
+          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='693' column='1' id='type-id-1986'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='694' column='1' id='type-id-1986'/>
+          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='694' column='1' id='type-id-1987'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='695' column='1' id='type-id-1928'/>
+          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='695' column='1' id='type-id-1929'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='696' column='1' id='type-id-1926'/>
+          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='696' column='1' id='type-id-1927'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__mutex_type' type-id='type-id-1877' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='698' column='1' id='type-id-1987'/>
+          <typedef-decl name='__mutex_type' type-id='type-id-1878' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='698' column='1' id='type-id-1988'/>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Alloc_block' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='717' column='1' id='type-id-1871'>
+          <class-decl name='_Alloc_block' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='717' column='1' id='type-id-1872'>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='__M_unused' type-id='type-id-1828' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='720' column='1'/>
+              <var-decl name='__M_unused' type-id='type-id-1829' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='720' column='1'/>
             </data-member>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_Block_pair' type-id='type-id-1951' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='724' column='1' id='type-id-1988'/>
+          <typedef-decl name='_Block_pair' type-id='type-id-1952' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='724' column='1' id='type-id-1989'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_BPVector' type-id='type-id-1860' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='726' column='1' id='type-id-1989'/>
+          <typedef-decl name='_BPVector' type-id='type-id-1861' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='726' column='1' id='type-id-1990'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='_BPiter' type-id='type-id-1991' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='727' column='1' id='type-id-1990'/>
+          <typedef-decl name='_BPiter' type-id='type-id-1992' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='727' column='1' id='type-id-1991'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_mem_blocks' type-id='type-id-1989' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE13_S_mem_blocksE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1089' column='1'/>
+          <var-decl name='_S_mem_blocks' type-id='type-id-1990' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE13_S_mem_blocksE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1089' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='_S_block_size' type-id='type-id-91' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE13_S_block_sizeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1092' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_last_request' type-id='type-id-1835' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE15_S_last_requestE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1102' column='1'/>
+          <var-decl name='_S_last_request' type-id='type-id-1836' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE15_S_last_requestE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1102' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_last_dealloc_index' type-id='type-id-1912' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE21_S_last_dealloc_indexE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1097' column='1'/>
+          <var-decl name='_S_last_dealloc_index' type-id='type-id-1913' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE21_S_last_dealloc_indexE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1097' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_mut' type-id='type-id-1987' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE6_S_mutE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1107' column='1'/>
+          <var-decl name='_S_mut' type-id='type-id-1988' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE6_S_mutE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1107' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1000' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1924'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1925'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~bitmap_allocator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1007' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='_S_find&lt;__gnu_cxx::__detail::_Inclusive_between&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='731' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1852'/>
-            <return type-id='type-id-1990'/>
+            <parameter type-id='type-id-1853'/>
+            <return type-id='type-id-1991'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx16bitmap_allocatorIwE8max_sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1050' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1925' is-artificial='yes'/>
-            <return type-id='type-id-1930'/>
+            <parameter type-id='type-id-1926' is-artificial='yes'/>
+            <return type-id='type-id-1931'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_S_refill_pool' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE14_S_refill_poolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='764' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='bitmap_allocator' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwEC2ERKS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1000' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1924'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1925'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~bitmap_allocator' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1007' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx16bitmap_allocatorIwE7addressERw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1042' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1925' is-artificial='yes'/>
-            <parameter type-id='type-id-1928'/>
-            <return type-id='type-id-1985'/>
+            <parameter type-id='type-id-1926' is-artificial='yes'/>
+            <parameter type-id='type-id-1929'/>
+            <return type-id='type-id-1986'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx16bitmap_allocatorIwE7addressERKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1046' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1925' is-artificial='yes'/>
-            <parameter type-id='type-id-1926'/>
-            <return type-id='type-id-1986'/>
+            <parameter type-id='type-id-1926' is-artificial='yes'/>
+            <parameter type-id='type-id-1927'/>
+            <return type-id='type-id-1987'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='construct' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE9constructEPwRKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1065' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1985'/>
-            <parameter type-id='type-id-1926'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1986'/>
+            <parameter type-id='type-id-1927'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='destroy' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE7destroyEPw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1069' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1985'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1986'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='_S_find&lt;__gnu_cxx::__detail::_Functor_Ref&lt;__gnu_cxx::__detail::_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt; &gt;' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE7_S_findINS_8__detail12_Functor_RefINS3_12_Ffit_finderIPNS1_12_Alloc_blockEEEEEEEPSt4pairIS7_S7_ET_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='731' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1848'/>
-            <return type-id='type-id-1990'/>
+            <parameter type-id='type-id-1849'/>
+            <return type-id='type-id-1991'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_deallocate_single_object' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE27_M_deallocate_single_objectEPw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='912' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1985'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1986'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_allocate_single_object' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE25_M_allocate_single_objectEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='822' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <return type-id='type-id-1985'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <return type-id='type-id-1986'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE8allocateEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1011' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1930'/>
-            <return type-id='type-id-1985'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1931'/>
+            <return type-id='type-id-1986'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE8allocateEmPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1026' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1930'/>
-            <parameter type-id='type-id-1977'/>
-            <return type-id='type-id-1985'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1931'/>
+            <parameter type-id='type-id-1978'/>
+            <return type-id='type-id-1986'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx16bitmap_allocatorIwE10deallocateEPwm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='1030' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1870' is-artificial='yes'/>
-            <parameter type-id='type-id-1985'/>
-            <parameter type-id='type-id-1930'/>
+            <parameter type-id='type-id-1871' is-artificial='yes'/>
+            <parameter type-id='type-id-1986'/>
+            <parameter type-id='type-id-1931'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
       <namespace-decl name='__detail'>
-        <class-decl name='__mini_vector&lt;long unsigned int*&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='70' column='1' id='type-id-1854'>
+        <class-decl name='__mini_vector&lt;long unsigned int*&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='70' column='1' id='type-id-1855'>
           <member-type access='private'>
-            <typedef-decl name='pointer' type-id='type-id-1965' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='77' column='1' id='type-id-1992'/>
+            <typedef-decl name='pointer' type-id='type-id-1966' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='77' column='1' id='type-id-1993'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='reference' type-id='type-id-1964' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='78' column='1' id='type-id-1993'/>
+            <typedef-decl name='reference' type-id='type-id-1965' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='78' column='1' id='type-id-1994'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='const_reference' type-id='type-id-1963' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='79' column='1' id='type-id-1896'/>
+            <typedef-decl name='const_reference' type-id='type-id-1964' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='79' column='1' id='type-id-1897'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='80' column='1' id='type-id-1898'/>
+            <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='80' column='1' id='type-id-1899'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='iterator' type-id='type-id-1992' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='82' column='1' id='type-id-1975'/>
+            <typedef-decl name='iterator' type-id='type-id-1993' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='82' column='1' id='type-id-1976'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_start' type-id='type-id-1992' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='85' column='1'/>
+            <var-decl name='_M_start' type-id='type-id-1993' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='85' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='64'>
-            <var-decl name='_M_finish' type-id='type-id-1992' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='86' column='1'/>
+            <var-decl name='_M_finish' type-id='type-id-1993' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='86' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='128'>
-            <var-decl name='_M_end_of_storage' type-id='type-id-1992' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='87' column='1'/>
+            <var-decl name='_M_end_of_storage' type-id='type-id-1993' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='87' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='__mini_vector' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
-              <parameter type-id='type-id-1894'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
+              <parameter type-id='type-id-1895'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='__mini_vector' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='end' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorIPmE3endEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1895' is-artificial='yes'/>
-              <return type-id='type-id-1975'/>
+              <parameter type-id='type-id-1896' is-artificial='yes'/>
+              <return type-id='type-id-1976'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_space_left' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorIPmE13_M_space_leftEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1895' is-artificial='yes'/>
-              <return type-id='type-id-1898'/>
+              <parameter type-id='type-id-1896' is-artificial='yes'/>
+              <return type-id='type-id-1899'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='size' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorIPmE4sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1895' is-artificial='yes'/>
-              <return type-id='type-id-1898'/>
+              <parameter type-id='type-id-1896' is-artificial='yes'/>
+              <return type-id='type-id-1899'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmE8allocateEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
-              <parameter type-id='type-id-1898'/>
-              <return type-id='type-id-1992'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
+              <parameter type-id='type-id-1899'/>
+              <return type-id='type-id-1993'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='begin' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorIPmE5beginEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1895' is-artificial='yes'/>
-              <return type-id='type-id-1975'/>
+              <parameter type-id='type-id-1896' is-artificial='yes'/>
+              <return type-id='type-id-1976'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmE10deallocateEPS2_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
-              <parameter type-id='type-id-1992'/>
-              <parameter type-id='type-id-1898'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
+              <parameter type-id='type-id-1993'/>
+              <parameter type-id='type-id-1899'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='back' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorIPmE4backEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1895' is-artificial='yes'/>
-              <return type-id='type-id-1993'/>
+              <parameter type-id='type-id-1896' is-artificial='yes'/>
+              <return type-id='type-id-1994'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='pop_back' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmE8pop_backEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='clear' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmE5clearEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='__mini_vector' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='insert' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmE6insertEPS2_RKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
-              <parameter type-id='type-id-1975'/>
-              <parameter type-id='type-id-1896'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
+              <parameter type-id='type-id-1976'/>
+              <parameter type-id='type-id-1897'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='operator[]' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorIPmEixEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1895' is-artificial='yes'/>
-              <parameter type-id='type-id-1898'/>
-              <return type-id='type-id-1993'/>
+              <parameter type-id='type-id-1896' is-artificial='yes'/>
+              <parameter type-id='type-id-1899'/>
+              <return type-id='type-id-1994'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='push_back' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmE9push_backERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
-              <parameter type-id='type-id-1896'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
+              <parameter type-id='type-id-1897'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='erase' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorIPmE5eraseEPS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1856' is-artificial='yes'/>
-              <parameter type-id='type-id-1975'/>
+              <parameter type-id='type-id-1857' is-artificial='yes'/>
+              <parameter type-id='type-id-1976'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='__mini_vector&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='70' column='1' id='type-id-1857'>
+        <class-decl name='__mini_vector&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='70' column='1' id='type-id-1858'>
           <member-type access='private'>
-            <typedef-decl name='pointer' type-id='type-id-1957' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='77' column='1' id='type-id-1994'/>
+            <typedef-decl name='pointer' type-id='type-id-1958' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='77' column='1' id='type-id-1995'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='reference' type-id='type-id-1956' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='78' column='1' id='type-id-1995'/>
+            <typedef-decl name='reference' type-id='type-id-1957' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='78' column='1' id='type-id-1996'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='const_reference' type-id='type-id-1950' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='79' column='1' id='type-id-1903'/>
+            <typedef-decl name='const_reference' type-id='type-id-1951' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='79' column='1' id='type-id-1904'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='80' column='1' id='type-id-1905'/>
+            <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='80' column='1' id='type-id-1906'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='81' column='1' id='type-id-1996'/>
+            <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='81' column='1' id='type-id-1997'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='iterator' type-id='type-id-1994' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='82' column='1' id='type-id-1984'/>
+            <typedef-decl name='iterator' type-id='type-id-1995' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='82' column='1' id='type-id-1985'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_start' type-id='type-id-1994' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='85' column='1'/>
+            <var-decl name='_M_start' type-id='type-id-1995' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='85' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='64'>
-            <var-decl name='_M_finish' type-id='type-id-1994' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='86' column='1'/>
+            <var-decl name='_M_finish' type-id='type-id-1995' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='86' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='128'>
-            <var-decl name='_M_end_of_storage' type-id='type-id-1994' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='87' column='1'/>
+            <var-decl name='_M_end_of_storage' type-id='type-id-1995' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='87' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='__mini_vector' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
-              <parameter type-id='type-id-1901'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
+              <parameter type-id='type-id-1902'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='__mini_vector' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='end' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE3endEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1902' is-artificial='yes'/>
-              <return type-id='type-id-1984'/>
+              <parameter type-id='type-id-1903' is-artificial='yes'/>
+              <return type-id='type-id-1985'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_space_left' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE13_M_space_leftEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1902' is-artificial='yes'/>
-              <return type-id='type-id-1905'/>
+              <parameter type-id='type-id-1903' is-artificial='yes'/>
+              <return type-id='type-id-1906'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='size' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE4sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1902' is-artificial='yes'/>
-              <return type-id='type-id-1905'/>
+              <parameter type-id='type-id-1903' is-artificial='yes'/>
+              <return type-id='type-id-1906'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE8allocateEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
-              <parameter type-id='type-id-1905'/>
-              <return type-id='type-id-1994'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
+              <parameter type-id='type-id-1906'/>
+              <return type-id='type-id-1995'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='begin' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE5beginEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1902' is-artificial='yes'/>
-              <return type-id='type-id-1984'/>
+              <parameter type-id='type-id-1903' is-artificial='yes'/>
+              <return type-id='type-id-1985'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE10deallocateEPS7_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
-              <parameter type-id='type-id-1994'/>
-              <parameter type-id='type-id-1905'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
+              <parameter type-id='type-id-1995'/>
+              <parameter type-id='type-id-1906'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='operator[]' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EEixEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1902' is-artificial='yes'/>
-              <parameter type-id='type-id-1905'/>
-              <return type-id='type-id-1995'/>
+              <parameter type-id='type-id-1903' is-artificial='yes'/>
+              <parameter type-id='type-id-1906'/>
+              <return type-id='type-id-1996'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='__mini_vector' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='back' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE4backEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1902' is-artificial='yes'/>
-              <return type-id='type-id-1995'/>
+              <parameter type-id='type-id-1903' is-artificial='yes'/>
+              <return type-id='type-id-1996'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='insert' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE6insertEPS7_RKS7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
-              <parameter type-id='type-id-1984'/>
-              <parameter type-id='type-id-1903'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
+              <parameter type-id='type-id-1985'/>
+              <parameter type-id='type-id-1904'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='push_back' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE9push_backERKS7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
-              <parameter type-id='type-id-1903'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
+              <parameter type-id='type-id-1904'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='pop_back' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE8pop_backEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='erase' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE5eraseEPS7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
-              <parameter type-id='type-id-1984'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
+              <parameter type-id='type-id-1985'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='clear' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIcE12_Alloc_blockES6_EE5clearEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1859' is-artificial='yes'/>
+              <parameter type-id='type-id-1860' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='__mini_vector&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='70' column='1' id='type-id-1860'>
+        <class-decl name='__mini_vector&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='70' column='1' id='type-id-1861'>
           <member-type access='private'>
-            <typedef-decl name='pointer' type-id='type-id-1959' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='77' column='1' id='type-id-1997'/>
+            <typedef-decl name='pointer' type-id='type-id-1960' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='77' column='1' id='type-id-1998'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='reference' type-id='type-id-1958' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='78' column='1' id='type-id-1998'/>
+            <typedef-decl name='reference' type-id='type-id-1959' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='78' column='1' id='type-id-1999'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='const_reference' type-id='type-id-1953' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='79' column='1' id='type-id-1910'/>
+            <typedef-decl name='const_reference' type-id='type-id-1954' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='79' column='1' id='type-id-1911'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='80' column='1' id='type-id-1912'/>
+            <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='80' column='1' id='type-id-1913'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='81' column='1' id='type-id-1999'/>
+            <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='81' column='1' id='type-id-2000'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='iterator' type-id='type-id-1997' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='82' column='1' id='type-id-1991'/>
+            <typedef-decl name='iterator' type-id='type-id-1998' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='82' column='1' id='type-id-1992'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_start' type-id='type-id-1997' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='85' column='1'/>
+            <var-decl name='_M_start' type-id='type-id-1998' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='85' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='64'>
-            <var-decl name='_M_finish' type-id='type-id-1997' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='86' column='1'/>
+            <var-decl name='_M_finish' type-id='type-id-1998' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='86' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='128'>
-            <var-decl name='_M_end_of_storage' type-id='type-id-1997' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='87' column='1'/>
+            <var-decl name='_M_end_of_storage' type-id='type-id-1998' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='87' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='__mini_vector' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
-              <parameter type-id='type-id-1908'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
+              <parameter type-id='type-id-1909'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='__mini_vector' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='end' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE3endEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1909' is-artificial='yes'/>
-              <return type-id='type-id-1991'/>
+              <parameter type-id='type-id-1910' is-artificial='yes'/>
+              <return type-id='type-id-1992'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_space_left' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE13_M_space_leftEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1909' is-artificial='yes'/>
-              <return type-id='type-id-1912'/>
+              <parameter type-id='type-id-1910' is-artificial='yes'/>
+              <return type-id='type-id-1913'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='size' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE4sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1909' is-artificial='yes'/>
-              <return type-id='type-id-1912'/>
+              <parameter type-id='type-id-1910' is-artificial='yes'/>
+              <return type-id='type-id-1913'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE8allocateEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
-              <parameter type-id='type-id-1912'/>
-              <return type-id='type-id-1997'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
+              <parameter type-id='type-id-1913'/>
+              <return type-id='type-id-1998'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='begin' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE5beginEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1909' is-artificial='yes'/>
-              <return type-id='type-id-1991'/>
+              <parameter type-id='type-id-1910' is-artificial='yes'/>
+              <return type-id='type-id-1992'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE10deallocateEPS7_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
-              <parameter type-id='type-id-1997'/>
-              <parameter type-id='type-id-1912'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
+              <parameter type-id='type-id-1998'/>
+              <parameter type-id='type-id-1913'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='operator[]' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EEixEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1909' is-artificial='yes'/>
-              <parameter type-id='type-id-1912'/>
-              <return type-id='type-id-1998'/>
+              <parameter type-id='type-id-1910' is-artificial='yes'/>
+              <parameter type-id='type-id-1913'/>
+              <return type-id='type-id-1999'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='__mini_vector' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='back' mangled-name='_ZNK9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE4backEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1909' is-artificial='yes'/>
-              <return type-id='type-id-1998'/>
+              <parameter type-id='type-id-1910' is-artificial='yes'/>
+              <return type-id='type-id-1999'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='insert' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE6insertEPS7_RKS7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
-              <parameter type-id='type-id-1991'/>
-              <parameter type-id='type-id-1910'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
+              <parameter type-id='type-id-1992'/>
+              <parameter type-id='type-id-1911'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='push_back' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE9push_backERKS7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
-              <parameter type-id='type-id-1910'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
+              <parameter type-id='type-id-1911'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='pop_back' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE8pop_backEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='erase' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE5eraseEPS7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
-              <parameter type-id='type-id-1991'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
+              <parameter type-id='type-id-1992'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='clear' mangled-name='_ZN9__gnu_cxx8__detail13__mini_vectorISt4pairIPNS_16bitmap_allocatorIwE12_Alloc_blockES6_EE5clearEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1862' is-artificial='yes'/>
+              <parameter type-id='type-id-1863' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Inclusive_between&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='282' column='1' id='type-id-1850'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1966'/>
+        <class-decl name='_Inclusive_between&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='282' column='1' id='type-id-1851'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1967'/>
           <member-type access='private'>
-            <typedef-decl name='pointer' type-id='type-id-1866' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='285' column='1' id='type-id-2000'/>
+            <typedef-decl name='pointer' type-id='type-id-1867' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='285' column='1' id='type-id-2001'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='_Block_pair' type-id='type-id-1948' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='287' column='1' id='type-id-2001'/>
+            <typedef-decl name='_Block_pair' type-id='type-id-1949' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='287' column='1' id='type-id-2002'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_ptr_value' type-id='type-id-2000' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='286' column='1'/>
+            <var-decl name='_M_ptr_value' type-id='type-id-2001' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='286' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Inclusive_between' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='290' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1851' is-artificial='yes'/>
-              <parameter type-id='type-id-2000'/>
+              <parameter type-id='type-id-1852' is-artificial='yes'/>
+              <parameter type-id='type-id-2001'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='operator()' mangled-name='_ZNK9__gnu_cxx8__detail18_Inclusive_betweenIPNS_16bitmap_allocatorIcE12_Alloc_blockEEclESt4pairIS5_S5_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1890' is-artificial='yes'/>
-              <parameter type-id='type-id-2001'/>
+              <parameter type-id='type-id-1891' is-artificial='yes'/>
+              <parameter type-id='type-id-2002'/>
               <return type-id='type-id-40'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Inclusive_between&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='282' column='1' id='type-id-1852'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1969'/>
+        <class-decl name='_Inclusive_between&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='282' column='1' id='type-id-1853'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1970'/>
           <member-type access='private'>
-            <typedef-decl name='pointer' type-id='type-id-1872' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='285' column='1' id='type-id-2002'/>
+            <typedef-decl name='pointer' type-id='type-id-1873' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='285' column='1' id='type-id-2003'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='_Block_pair' type-id='type-id-1951' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='287' column='1' id='type-id-2003'/>
+            <typedef-decl name='_Block_pair' type-id='type-id-1952' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='287' column='1' id='type-id-2004'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_ptr_value' type-id='type-id-2002' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='286' column='1'/>
+            <var-decl name='_M_ptr_value' type-id='type-id-2003' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='286' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Inclusive_between' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='290' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1853' is-artificial='yes'/>
-              <parameter type-id='type-id-2002'/>
+              <parameter type-id='type-id-1854' is-artificial='yes'/>
+              <parameter type-id='type-id-2003'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='operator()' mangled-name='_ZNK9__gnu_cxx8__detail18_Inclusive_betweenIPNS_16bitmap_allocatorIwE12_Alloc_blockEEclESt4pairIS5_S5_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1892' is-artificial='yes'/>
-              <parameter type-id='type-id-2003'/>
+              <parameter type-id='type-id-1893' is-artificial='yes'/>
+              <parameter type-id='type-id-2004'/>
               <return type-id='type-id-40'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Functor_Ref&lt;__gnu_cxx::__detail::_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='306' column='1' id='type-id-1846'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1966'/>
+        <class-decl name='_Functor_Ref&lt;__gnu_cxx::__detail::_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='306' column='1' id='type-id-1847'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1967'/>
           <member-type access='private'>
-            <typedef-decl name='argument_type' type-id='type-id-1967' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='313' column='1' id='type-id-2004'/>
+            <typedef-decl name='argument_type' type-id='type-id-1968' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='313' column='1' id='type-id-2005'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='result_type' type-id='type-id-1968' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='314' column='1' id='type-id-2005'/>
+            <typedef-decl name='result_type' type-id='type-id-1969' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='314' column='1' id='type-id-2006'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_fref' type-id='type-id-1841' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='310' column='1'/>
+            <var-decl name='_M_fref' type-id='type-id-1842' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='310' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Functor_Ref' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1847' is-artificial='yes'/>
-              <parameter type-id='type-id-1841'/>
+              <parameter type-id='type-id-1848' is-artificial='yes'/>
+              <parameter type-id='type-id-1842'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='operator()' mangled-name='_ZN9__gnu_cxx8__detail12_Functor_RefINS0_12_Ffit_finderIPNS_16bitmap_allocatorIcE12_Alloc_blockEEEEclESt4pairIS6_S6_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='320' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1847' is-artificial='yes'/>
-              <parameter type-id='type-id-2004'/>
-              <return type-id='type-id-2005'/>
+              <parameter type-id='type-id-1848' is-artificial='yes'/>
+              <parameter type-id='type-id-2005'/>
+              <return type-id='type-id-2006'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Functor_Ref&lt;__gnu_cxx::__detail::_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='306' column='1' id='type-id-1848'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1969'/>
+        <class-decl name='_Functor_Ref&lt;__gnu_cxx::__detail::_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='306' column='1' id='type-id-1849'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1970'/>
           <member-type access='private'>
-            <typedef-decl name='argument_type' type-id='type-id-1970' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='313' column='1' id='type-id-2006'/>
+            <typedef-decl name='argument_type' type-id='type-id-1971' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='313' column='1' id='type-id-2007'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='result_type' type-id='type-id-1971' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='314' column='1' id='type-id-2007'/>
+            <typedef-decl name='result_type' type-id='type-id-1972' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='314' column='1' id='type-id-2008'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_fref' type-id='type-id-1844' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='310' column='1'/>
+            <var-decl name='_M_fref' type-id='type-id-1845' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='310' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Functor_Ref' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1849' is-artificial='yes'/>
-              <parameter type-id='type-id-1844'/>
+              <parameter type-id='type-id-1850' is-artificial='yes'/>
+              <parameter type-id='type-id-1845'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='operator()' mangled-name='_ZN9__gnu_cxx8__detail12_Functor_RefINS0_12_Ffit_finderIPNS_16bitmap_allocatorIwE12_Alloc_blockEEEEclESt4pairIS6_S6_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='320' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1849' is-artificial='yes'/>
-              <parameter type-id='type-id-2006'/>
-              <return type-id='type-id-2007'/>
+              <parameter type-id='type-id-1850' is-artificial='yes'/>
+              <parameter type-id='type-id-2007'/>
+              <return type-id='type-id-2008'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='332' column='1' id='type-id-1840'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1966'/>
+        <class-decl name='_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='332' column='1' id='type-id-1841'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1967'/>
           <member-type access='private'>
-            <typedef-decl name='_Block_pair' type-id='type-id-1948' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='335' column='1' id='type-id-2008'/>
+            <typedef-decl name='_Block_pair' type-id='type-id-1949' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='335' column='1' id='type-id-2009'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='_Counter_type' type-id='type-id-1996' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='337' column='1' id='type-id-2009'/>
+            <typedef-decl name='_Counter_type' type-id='type-id-1997' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='337' column='1' id='type-id-2010'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_pbitmap' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='339' column='1'/>
+            <var-decl name='_M_pbitmap' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='339' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='64'>
-            <var-decl name='_M_data_offset' type-id='type-id-2009' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='340' column='1'/>
+            <var-decl name='_M_data_offset' type-id='type-id-2010' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='340' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Ffit_finder' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1842' is-artificial='yes'/>
+              <parameter type-id='type-id-1843' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_get' mangled-name='_ZNK9__gnu_cxx8__detail12_Ffit_finderIPNS_16bitmap_allocatorIcE12_Alloc_blockEE6_M_getEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1886' is-artificial='yes'/>
-              <return type-id='type-id-1960'/>
+              <parameter type-id='type-id-1887' is-artificial='yes'/>
+              <return type-id='type-id-1961'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_offset' mangled-name='_ZNK9__gnu_cxx8__detail12_Ffit_finderIPNS_16bitmap_allocatorIcE12_Alloc_blockEE9_M_offsetEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='385' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1886' is-artificial='yes'/>
-              <return type-id='type-id-2009'/>
+              <parameter type-id='type-id-1887' is-artificial='yes'/>
+              <return type-id='type-id-2010'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='operator()' mangled-name='_ZN9__gnu_cxx8__detail12_Ffit_finderIPNS_16bitmap_allocatorIcE12_Alloc_blockEEclESt4pairIS5_S5_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1842' is-artificial='yes'/>
-              <parameter type-id='type-id-2008'/>
+              <parameter type-id='type-id-1843' is-artificial='yes'/>
+              <parameter type-id='type-id-2009'/>
               <return type-id='type-id-40'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='332' column='1' id='type-id-1843'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1969'/>
+        <class-decl name='_Ffit_finder&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='332' column='1' id='type-id-1844'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1970'/>
           <member-type access='private'>
-            <typedef-decl name='_Block_pair' type-id='type-id-1951' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='335' column='1' id='type-id-2010'/>
+            <typedef-decl name='_Block_pair' type-id='type-id-1952' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='335' column='1' id='type-id-2011'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='_Counter_type' type-id='type-id-1999' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='337' column='1' id='type-id-2011'/>
+            <typedef-decl name='_Counter_type' type-id='type-id-2000' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='337' column='1' id='type-id-2012'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_pbitmap' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='339' column='1'/>
+            <var-decl name='_M_pbitmap' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='339' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='64'>
-            <var-decl name='_M_data_offset' type-id='type-id-2011' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='340' column='1'/>
+            <var-decl name='_M_data_offset' type-id='type-id-2012' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='340' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Ffit_finder' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1845' is-artificial='yes'/>
+              <parameter type-id='type-id-1846' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_get' mangled-name='_ZNK9__gnu_cxx8__detail12_Ffit_finderIPNS_16bitmap_allocatorIwE12_Alloc_blockEE6_M_getEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1888' is-artificial='yes'/>
-              <return type-id='type-id-1960'/>
+              <parameter type-id='type-id-1889' is-artificial='yes'/>
+              <return type-id='type-id-1961'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_offset' mangled-name='_ZNK9__gnu_cxx8__detail12_Ffit_finderIPNS_16bitmap_allocatorIwE12_Alloc_blockEE9_M_offsetEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='385' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1888' is-artificial='yes'/>
-              <return type-id='type-id-2011'/>
+              <parameter type-id='type-id-1889' is-artificial='yes'/>
+              <return type-id='type-id-2012'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='operator()' mangled-name='_ZN9__gnu_cxx8__detail12_Ffit_finderIPNS_16bitmap_allocatorIwE12_Alloc_blockEEclESt4pairIS5_S5_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1845' is-artificial='yes'/>
-              <parameter type-id='type-id-2010'/>
+              <parameter type-id='type-id-1846' is-artificial='yes'/>
+              <parameter type-id='type-id-2011'/>
               <return type-id='type-id-40'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Bitmap_counter&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='397' column='1' id='type-id-1830'>
+        <class-decl name='_Bitmap_counter&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='397' column='1' id='type-id-1831'>
           <member-type access='private'>
-            <typedef-decl name='_BPVector' type-id='type-id-1857' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='400' column='1' id='type-id-1833'/>
+            <typedef-decl name='_BPVector' type-id='type-id-1858' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='400' column='1' id='type-id-1834'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='_Index_type' type-id='type-id-1905' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='401' column='1' id='type-id-2012'/>
+            <typedef-decl name='_Index_type' type-id='type-id-1906' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='401' column='1' id='type-id-2013'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='pointer' type-id='type-id-1866' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='402' column='1' id='type-id-2013'/>
+            <typedef-decl name='pointer' type-id='type-id-1867' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='402' column='1' id='type-id-2014'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_vbp' type-id='type-id-1834' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='404' column='1'/>
+            <var-decl name='_M_vbp' type-id='type-id-1835' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='404' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='64'>
-            <var-decl name='_M_curr_bmap' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='405' column='1'/>
+            <var-decl name='_M_curr_bmap' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='405' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='128'>
-            <var-decl name='_M_last_bmap_in_block' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='406' column='1'/>
+            <var-decl name='_M_last_bmap_in_block' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='406' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='192'>
-            <var-decl name='_M_curr_index' type-id='type-id-2012' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='407' column='1'/>
+            <var-decl name='_M_curr_index' type-id='type-id-2013' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='407' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Bitmap_counter' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='413' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1832' is-artificial='yes'/>
-              <parameter type-id='type-id-1834'/>
+              <parameter type-id='type-id-1833' is-artificial='yes'/>
+              <parameter type-id='type-id-1835'/>
               <parameter type-id='type-id-20'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_get' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIcE12_Alloc_blockEE6_M_getEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='465' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1882' is-artificial='yes'/>
-              <return type-id='type-id-1960'/>
+              <parameter type-id='type-id-1883' is-artificial='yes'/>
+              <return type-id='type-id-1961'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_finished' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIcE12_Alloc_blockEE11_M_finishedEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='446' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1882' is-artificial='yes'/>
+              <parameter type-id='type-id-1883' is-artificial='yes'/>
               <return type-id='type-id-40'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_base' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIcE12_Alloc_blockEE7_M_baseEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1882' is-artificial='yes'/>
-              <return type-id='type-id-2013'/>
+              <parameter type-id='type-id-1883' is-artificial='yes'/>
+              <return type-id='type-id-2014'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_where' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIcE12_Alloc_blockEE8_M_whereEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='481' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1882' is-artificial='yes'/>
-              <return type-id='type-id-2012'/>
+              <parameter type-id='type-id-1883' is-artificial='yes'/>
+              <return type-id='type-id-2013'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_offset' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIcE12_Alloc_blockEE9_M_offsetEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='473' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1882' is-artificial='yes'/>
-              <return type-id='type-id-2012'/>
+              <parameter type-id='type-id-1883' is-artificial='yes'/>
+              <return type-id='type-id-2013'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='_M_reset' mangled-name='_ZN9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIcE12_Alloc_blockEE8_M_resetEl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1832' is-artificial='yes'/>
+              <parameter type-id='type-id-1833' is-artificial='yes'/>
               <parameter type-id='type-id-20'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='operator++' mangled-name='_ZN9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIcE12_Alloc_blockEEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='450' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1832' is-artificial='yes'/>
-              <return type-id='type-id-1831'/>
+              <parameter type-id='type-id-1833' is-artificial='yes'/>
+              <return type-id='type-id-1832'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Bitmap_counter&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='397' column='1' id='type-id-1835'>
+        <class-decl name='_Bitmap_counter&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='397' column='1' id='type-id-1836'>
           <member-type access='private'>
-            <typedef-decl name='_BPVector' type-id='type-id-1860' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='400' column='1' id='type-id-1838'/>
+            <typedef-decl name='_BPVector' type-id='type-id-1861' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='400' column='1' id='type-id-1839'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='_Index_type' type-id='type-id-1912' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='401' column='1' id='type-id-2014'/>
+            <typedef-decl name='_Index_type' type-id='type-id-1913' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='401' column='1' id='type-id-2015'/>
           </member-type>
           <member-type access='private'>
-            <typedef-decl name='pointer' type-id='type-id-1872' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='402' column='1' id='type-id-2015'/>
+            <typedef-decl name='pointer' type-id='type-id-1873' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='402' column='1' id='type-id-2016'/>
           </member-type>
           <data-member access='private' layout-offset-in-bits='0'>
-            <var-decl name='_M_vbp' type-id='type-id-1839' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='404' column='1'/>
+            <var-decl name='_M_vbp' type-id='type-id-1840' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='404' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='64'>
-            <var-decl name='_M_curr_bmap' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='405' column='1'/>
+            <var-decl name='_M_curr_bmap' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='405' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='128'>
-            <var-decl name='_M_last_bmap_in_block' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='406' column='1'/>
+            <var-decl name='_M_last_bmap_in_block' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='406' column='1'/>
           </data-member>
           <data-member access='private' layout-offset-in-bits='192'>
-            <var-decl name='_M_curr_index' type-id='type-id-2014' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='407' column='1'/>
+            <var-decl name='_M_curr_index' type-id='type-id-2015' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='407' column='1'/>
           </data-member>
           <member-function access='private'>
             <function-decl name='_Bitmap_counter' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='413' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1837' is-artificial='yes'/>
-              <parameter type-id='type-id-1839'/>
+              <parameter type-id='type-id-1838' is-artificial='yes'/>
+              <parameter type-id='type-id-1840'/>
               <parameter type-id='type-id-20'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_get' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIwE12_Alloc_blockEE6_M_getEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='465' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1884' is-artificial='yes'/>
-              <return type-id='type-id-1960'/>
+              <parameter type-id='type-id-1885' is-artificial='yes'/>
+              <return type-id='type-id-1961'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_finished' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIwE12_Alloc_blockEE11_M_finishedEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='446' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1884' is-artificial='yes'/>
+              <parameter type-id='type-id-1885' is-artificial='yes'/>
               <return type-id='type-id-40'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_base' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIwE12_Alloc_blockEE7_M_baseEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1884' is-artificial='yes'/>
-              <return type-id='type-id-2015'/>
+              <parameter type-id='type-id-1885' is-artificial='yes'/>
+              <return type-id='type-id-2016'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_where' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIwE12_Alloc_blockEE8_M_whereEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='481' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1884' is-artificial='yes'/>
-              <return type-id='type-id-2014'/>
+              <parameter type-id='type-id-1885' is-artificial='yes'/>
+              <return type-id='type-id-2015'/>
             </function-decl>
           </member-function>
           <member-function access='private' const='yes'>
             <function-decl name='_M_offset' mangled-name='_ZNK9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIwE12_Alloc_blockEE9_M_offsetEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='473' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1884' is-artificial='yes'/>
-              <return type-id='type-id-2014'/>
+              <parameter type-id='type-id-1885' is-artificial='yes'/>
+              <return type-id='type-id-2015'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='_M_reset' mangled-name='_ZN9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIwE12_Alloc_blockEE8_M_resetEl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1837' is-artificial='yes'/>
+              <parameter type-id='type-id-1838' is-artificial='yes'/>
               <parameter type-id='type-id-20'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='private'>
             <function-decl name='operator++' mangled-name='_ZN9__gnu_cxx8__detail15_Bitmap_counterIPNS_16bitmap_allocatorIwE12_Alloc_blockEEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='450' column='1' visibility='default' binding='global' size-in-bits='64'>
-              <parameter type-id='type-id-1837' is-artificial='yes'/>
-              <return type-id='type-id-1836'/>
+              <parameter type-id='type-id-1838' is-artificial='yes'/>
+              <return type-id='type-id-1837'/>
             </function-decl>
           </member-function>
         </class-decl>
         <function-decl name='__num_blocks&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1948'/>
+          <parameter type-id='type-id-1949'/>
           <return type-id='type-id-91'/>
         </function-decl>
         <function-decl name='__num_blocks&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1951'/>
+          <parameter type-id='type-id-1952'/>
           <return type-id='type-id-91'/>
         </function-decl>
         <function-decl name='__num_bitmaps&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;char&gt;::_Alloc_block*&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1948'/>
+          <parameter type-id='type-id-1949'/>
           <return type-id='type-id-91'/>
         </function-decl>
         <function-decl name='__num_bitmaps&lt;std::pair&lt;__gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*, __gnu_cxx::bitmap_allocator&lt;wchar_t&gt;::_Alloc_block*&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1951'/>
+          <parameter type-id='type-id-1952'/>
           <return type-id='type-id-91'/>
         </function-decl>
         <function-decl name='__bit_allocate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='489' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1960'/>
+          <parameter type-id='type-id-1961'/>
           <parameter type-id='type-id-91'/>
           <return type-id='type-id-5'/>
         </function-decl>
         <function-decl name='__bit_free' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/bitmap_allocator.h' line='500' column='1' visibility='default' binding='global' size-in-bits='64'>
-          <parameter type-id='type-id-1960'/>
+          <parameter type-id='type-id-1961'/>
           <parameter type-id='type-id-91'/>
           <return type-id='type-id-5'/>
         </function-decl>
@@ -24479,13 +24485,13 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/codecvt.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-2016' size-in-bits='832' id='type-id-2017'>
-      <subrange length='13' type-id='type-id-176' id='type-id-2018'/>
+    <array-type-def dimensions='1' type-id='type-id-2017' size-in-bits='832' id='type-id-2018'>
+      <subrange length='13' type-id='type-id-176' id='type-id-2019'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='832' id='type-id-2019'>
-      <subrange length='13' type-id='type-id-176' id='type-id-2018'/>
+    <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='832' id='type-id-2020'>
+      <subrange length='13' type-id='type-id-176' id='type-id-2019'/>
     </array-type-def>
-    <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/wchar.h' line='84' column='1' id='type-id-2020'>
+    <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/wchar.h' line='84' column='1' id='type-id-2021'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='__count' type-id='type-id-6' visibility='default' filepath='/usr/include/wchar.h' line='85' column='1'/>
       </data-member>
@@ -24493,70 +24499,70 @@ 
         <var-decl name='__value' type-id='type-id-647' visibility='default' filepath='/usr/include/wchar.h' line='94' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='__locale_struct' size-in-bits='1856' is-struct='yes' visibility='default' filepath='/usr/include/xlocale.h' line='28' column='1' id='type-id-2021'>
+    <class-decl name='__locale_struct' size-in-bits='1856' is-struct='yes' visibility='default' filepath='/usr/include/xlocale.h' line='28' column='1' id='type-id-2022'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='__locales' type-id='type-id-2017' visibility='default' filepath='/usr/include/xlocale.h' line='31' column='1'/>
+        <var-decl name='__locales' type-id='type-id-2018' visibility='default' filepath='/usr/include/xlocale.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='__ctype_b' type-id='type-id-2022' visibility='default' filepath='/usr/include/xlocale.h' line='34' column='1'/>
+        <var-decl name='__ctype_b' type-id='type-id-2023' visibility='default' filepath='/usr/include/xlocale.h' line='34' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='__ctype_tolower' type-id='type-id-1489' visibility='default' filepath='/usr/include/xlocale.h' line='35' column='1'/>
+        <var-decl name='__ctype_tolower' type-id='type-id-1490' visibility='default' filepath='/usr/include/xlocale.h' line='35' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='960'>
-        <var-decl name='__ctype_toupper' type-id='type-id-1489' visibility='default' filepath='/usr/include/xlocale.h' line='36' column='1'/>
+        <var-decl name='__ctype_toupper' type-id='type-id-1490' visibility='default' filepath='/usr/include/xlocale.h' line='36' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1024'>
-        <var-decl name='__names' type-id='type-id-2019' visibility='default' filepath='/usr/include/xlocale.h' line='39' column='1'/>
+        <var-decl name='__names' type-id='type-id-2020' visibility='default' filepath='/usr/include/xlocale.h' line='39' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='__locale_t' type-id='type-id-2023' filepath='/usr/include/xlocale.h' line='40' column='1' id='type-id-2024'/>
-    <pointer-type-def type-id='type-id-2025' size-in-bits='64' id='type-id-2016'/>
-    <pointer-type-def type-id='type-id-2021' size-in-bits='64' id='type-id-2023'/>
-    <pointer-type-def type-id='type-id-284' size-in-bits='64' id='type-id-1489'/>
-    <qualified-type-def type-id='type-id-956' const='yes' id='type-id-2026'/>
-    <pointer-type-def type-id='type-id-2026' size-in-bits='64' id='type-id-1301'/>
-    <qualified-type-def type-id='type-id-2027' const='yes' id='type-id-2028'/>
-    <pointer-type-def type-id='type-id-2028' size-in-bits='64' id='type-id-2029'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2029' size-in-bits='64' id='type-id-2030'/>
-    <qualified-type-def type-id='type-id-2031' const='yes' id='type-id-2032'/>
-    <pointer-type-def type-id='type-id-2032' size-in-bits='64' id='type-id-2033'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2033' size-in-bits='64' id='type-id-2034'/>
-    <qualified-type-def type-id='type-id-976' const='yes' id='type-id-2035'/>
-    <pointer-type-def type-id='type-id-2035' size-in-bits='64' id='type-id-1303'/>
-    <qualified-type-def type-id='type-id-2036' const='yes' id='type-id-2037'/>
-    <pointer-type-def type-id='type-id-2037' size-in-bits='64' id='type-id-2038'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2038' size-in-bits='64' id='type-id-2039'/>
-    <qualified-type-def type-id='type-id-2040' const='yes' id='type-id-2041'/>
-    <pointer-type-def type-id='type-id-2041' size-in-bits='64' id='type-id-2042'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2042' size-in-bits='64' id='type-id-2043'/>
-    <qualified-type-def type-id='type-id-2044' const='yes' id='type-id-2045'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2045' size-in-bits='64' id='type-id-2046'/>
-    <pointer-type-def type-id='type-id-2045' size-in-bits='64' id='type-id-2047'/>
-    <qualified-type-def type-id='type-id-627' const='yes' id='type-id-2048'/>
-    <pointer-type-def type-id='type-id-2048' size-in-bits='64' id='type-id-2022'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2049' size-in-bits='64' id='type-id-2050'/>
-    <pointer-type-def type-id='type-id-2051' size-in-bits='64' id='type-id-2052'/>
-    <pointer-type-def type-id='type-id-2053' size-in-bits='64' id='type-id-2054'/>
-    <pointer-type-def type-id='type-id-956' size-in-bits='64' id='type-id-2055'/>
-    <pointer-type-def type-id='type-id-2027' size-in-bits='64' id='type-id-2056'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2056' size-in-bits='64' id='type-id-2057'/>
-    <pointer-type-def type-id='type-id-2031' size-in-bits='64' id='type-id-2058'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2058' size-in-bits='64' id='type-id-2059'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2060' size-in-bits='64' id='type-id-2061'/>
-    <pointer-type-def type-id='type-id-976' size-in-bits='64' id='type-id-2062'/>
-    <pointer-type-def type-id='type-id-2036' size-in-bits='64' id='type-id-2063'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2063' size-in-bits='64' id='type-id-2064'/>
-    <pointer-type-def type-id='type-id-2040' size-in-bits='64' id='type-id-2065'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2065' size-in-bits='64' id='type-id-2066'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2067' size-in-bits='64' id='type-id-2068'/>
-    <pointer-type-def type-id='type-id-2069' size-in-bits='64' id='type-id-2070'/>
-    <pointer-type-def type-id='type-id-2044' size-in-bits='64' id='type-id-2071'/>
-    <class-decl name='__locale_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-2025'/>
+    <typedef-decl name='__locale_t' type-id='type-id-2024' filepath='/usr/include/xlocale.h' line='40' column='1' id='type-id-2025'/>
+    <pointer-type-def type-id='type-id-2026' size-in-bits='64' id='type-id-2017'/>
+    <pointer-type-def type-id='type-id-2022' size-in-bits='64' id='type-id-2024'/>
+    <pointer-type-def type-id='type-id-284' size-in-bits='64' id='type-id-1490'/>
+    <qualified-type-def type-id='type-id-956' const='yes' id='type-id-2027'/>
+    <pointer-type-def type-id='type-id-2027' size-in-bits='64' id='type-id-1302'/>
+    <qualified-type-def type-id='type-id-2028' const='yes' id='type-id-2029'/>
+    <pointer-type-def type-id='type-id-2029' size-in-bits='64' id='type-id-2030'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2030' size-in-bits='64' id='type-id-2031'/>
+    <qualified-type-def type-id='type-id-2032' const='yes' id='type-id-2033'/>
+    <pointer-type-def type-id='type-id-2033' size-in-bits='64' id='type-id-2034'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2034' size-in-bits='64' id='type-id-2035'/>
+    <qualified-type-def type-id='type-id-976' const='yes' id='type-id-2036'/>
+    <pointer-type-def type-id='type-id-2036' size-in-bits='64' id='type-id-1304'/>
+    <qualified-type-def type-id='type-id-2037' const='yes' id='type-id-2038'/>
+    <pointer-type-def type-id='type-id-2038' size-in-bits='64' id='type-id-2039'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2039' size-in-bits='64' id='type-id-2040'/>
+    <qualified-type-def type-id='type-id-2041' const='yes' id='type-id-2042'/>
+    <pointer-type-def type-id='type-id-2042' size-in-bits='64' id='type-id-2043'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2043' size-in-bits='64' id='type-id-2044'/>
+    <qualified-type-def type-id='type-id-2045' const='yes' id='type-id-2046'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2046' size-in-bits='64' id='type-id-2047'/>
+    <pointer-type-def type-id='type-id-2046' size-in-bits='64' id='type-id-2048'/>
+    <qualified-type-def type-id='type-id-627' const='yes' id='type-id-2049'/>
+    <pointer-type-def type-id='type-id-2049' size-in-bits='64' id='type-id-2023'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2050' size-in-bits='64' id='type-id-2051'/>
+    <pointer-type-def type-id='type-id-2052' size-in-bits='64' id='type-id-2053'/>
+    <pointer-type-def type-id='type-id-2054' size-in-bits='64' id='type-id-2055'/>
+    <pointer-type-def type-id='type-id-956' size-in-bits='64' id='type-id-2056'/>
+    <pointer-type-def type-id='type-id-2028' size-in-bits='64' id='type-id-2057'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2057' size-in-bits='64' id='type-id-2058'/>
+    <pointer-type-def type-id='type-id-2032' size-in-bits='64' id='type-id-2059'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2059' size-in-bits='64' id='type-id-2060'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2061' size-in-bits='64' id='type-id-2062'/>
+    <pointer-type-def type-id='type-id-976' size-in-bits='64' id='type-id-2063'/>
+    <pointer-type-def type-id='type-id-2037' size-in-bits='64' id='type-id-2064'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2064' size-in-bits='64' id='type-id-2065'/>
+    <pointer-type-def type-id='type-id-2041' size-in-bits='64' id='type-id-2066'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2066' size-in-bits='64' id='type-id-2067'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2068' size-in-bits='64' id='type-id-2069'/>
+    <pointer-type-def type-id='type-id-2070' size-in-bits='64' id='type-id-2071'/>
+    <pointer-type-def type-id='type-id-2045' size-in-bits='64' id='type-id-2072'/>
+    <class-decl name='__locale_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-2026'/>
     <namespace-decl name='std'>
-      <class-decl name='codecvt_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='47' column='1' id='type-id-2072'>
+      <class-decl name='codecvt_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='47' column='1' id='type-id-2073'>
         <member-type access='private'>
-          <enum-decl name='result' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='50' column='1' id='type-id-2073'>
+          <enum-decl name='result' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='50' column='1' id='type-id-2074'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='ok' value='0'/>
             <enumerator name='partial' value='1'/>
@@ -24567,16 +24573,16 @@ 
       </class-decl>
       <class-decl name='locale' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='64' column='1' id='type-id-996'>
         <member-type access='private'>
-          <typedef-decl name='category' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='69' column='1' id='type-id-2074'/>
+          <typedef-decl name='category' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='69' column='1' id='type-id-2075'/>
         </member-type>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='306' column='1' id='type-id-2075'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='306' column='1' id='type-id-2076'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='_S_categories_size' value='12'/>
           </enum-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='id' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='438' column='1' id='type-id-2044'>
+          <class-decl name='id' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='438' column='1' id='type-id-2045'>
             <data-member access='private' layout-offset-in-bits='0'>
               <var-decl name='_M_index' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='455' column='1'/>
             </data-member>
@@ -24585,74 +24591,74 @@ 
             </data-member>
             <member-function access='private' constructor='yes'>
               <function-decl name='id' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='463' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2071' is-artificial='yes'/>
-                <parameter type-id='type-id-2046'/>
+                <parameter type-id='type-id-2072' is-artificial='yes'/>
+                <parameter type-id='type-id-2047'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='id' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2071' is-artificial='yes'/>
+                <parameter type-id='type-id-2072' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' const='yes'>
               <function-decl name='_M_id' mangled-name='_ZNKSt6locale2id5_M_idEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='472' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt6locale2id5_M_idEv@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2047' is-artificial='yes'/>
+                <parameter type-id='type-id-2048' is-artificial='yes'/>
                 <return type-id='type-id-91'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Impl' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='477' column='1' id='type-id-2076'>
+          <class-decl name='_Impl' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='477' column='1' id='type-id-2077'>
             <data-member access='private' layout-offset-in-bits='0'>
               <var-decl name='_M_refcount' type-id='type-id-594' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='497' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='64'>
-              <var-decl name='_M_facets' type-id='type-id-2077' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='498' column='1'/>
+              <var-decl name='_M_facets' type-id='type-id-2078' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='498' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='128'>
               <var-decl name='_M_facets_size' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='499' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='192'>
-              <var-decl name='_M_caches' type-id='type-id-2077' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='500' column='1'/>
+              <var-decl name='_M_caches' type-id='type-id-2078' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='500' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='256'>
               <var-decl name='_M_names' type-id='type-id-273' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='501' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_id_ctype' type-id='type-id-2078' mangled-name='_ZNSt6locale5_Impl11_S_id_ctypeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='502' column='1'/>
+              <var-decl name='_S_id_ctype' type-id='type-id-2079' mangled-name='_ZNSt6locale5_Impl11_S_id_ctypeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='502' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_id_numeric' type-id='type-id-2078' mangled-name='_ZNSt6locale5_Impl13_S_id_numericE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='503' column='1'/>
+              <var-decl name='_S_id_numeric' type-id='type-id-2079' mangled-name='_ZNSt6locale5_Impl13_S_id_numericE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='503' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_id_collate' type-id='type-id-2078' mangled-name='_ZNSt6locale5_Impl13_S_id_collateE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='504' column='1'/>
+              <var-decl name='_S_id_collate' type-id='type-id-2079' mangled-name='_ZNSt6locale5_Impl13_S_id_collateE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='504' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_id_time' type-id='type-id-2078' mangled-name='_ZNSt6locale5_Impl10_S_id_timeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='505' column='1'/>
+              <var-decl name='_S_id_time' type-id='type-id-2079' mangled-name='_ZNSt6locale5_Impl10_S_id_timeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='505' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_id_monetary' type-id='type-id-2078' mangled-name='_ZNSt6locale5_Impl14_S_id_monetaryE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='506' column='1'/>
+              <var-decl name='_S_id_monetary' type-id='type-id-2079' mangled-name='_ZNSt6locale5_Impl14_S_id_monetaryE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='506' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_id_messages' type-id='type-id-2078' mangled-name='_ZNSt6locale5_Impl14_S_id_messagesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='507' column='1'/>
+              <var-decl name='_S_id_messages' type-id='type-id-2079' mangled-name='_ZNSt6locale5_Impl14_S_id_messagesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='507' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_facet_categories' type-id='type-id-2079' mangled-name='_ZNSt6locale5_Impl19_S_facet_categoriesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='508' column='1'/>
+              <var-decl name='_S_facet_categories' type-id='type-id-2080' mangled-name='_ZNSt6locale5_Impl19_S_facet_categoriesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='508' column='1'/>
             </data-member>
             <member-function access='private' constructor='yes'>
               <function-decl name='_Impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2081'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2082'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='_Impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='530' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <parameter type-id='type-id-4'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
@@ -24660,296 +24666,296 @@ 
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='_Impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='531' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~_Impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='533' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='_Impl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='535' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2081'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2082'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_check_same_name' mangled-name='_ZNSt6locale5_Impl18_M_check_same_nameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='541' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <return type-id='type-id-40'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_remove_reference' mangled-name='_ZNSt6locale5_Impl19_M_remove_referenceEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_add_reference' mangled-name='_ZNSt6locale5_Impl16_M_add_referenceEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='511' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~_Impl' mangled-name='_ZNSt6locale5_ImplD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_ImplD2Ev@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='_Impl' mangled-name='_ZNSt6locale5_ImplC2ERKS0_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_ImplC2ERKS0_m@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2081'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2082'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_install_cache' mangled-name='_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm@@GLIBCXX_3.4.7'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2082'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2083'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_install_facet' mangled-name='_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='561' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2047'/>
-                <parameter type-id='type-id-2082'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2048'/>
+                <parameter type-id='type-id-2083'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_replace_facet' mangled-name='_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='558' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2083'/>
-                <parameter type-id='type-id-2047'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2084'/>
+                <parameter type-id='type-id-2048'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_replace_category' mangled-name='_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2083'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <parameter type-id='type-id-2084'/>
+                <parameter type-id='type-id-2085'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::ctype&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2085'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2086'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::codecvt&lt;char, char, __mbstate_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2055'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2056'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::numpunct&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2086'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2087'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::num_get&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2087'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2088'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::num_put&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2088'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2089'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::collate&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2089'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2090'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::moneypunct&lt;char, false&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2090'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2091'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::moneypunct&lt;char, true&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2091'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2092'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::money_get&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2092'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2093'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::money_put&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2093'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2094'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::__timepunct&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2094'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2095'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::time_get&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2095'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2096'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::time_put&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2096'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2097'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::messages&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2097'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2098'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::ctype&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2098'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2099'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::codecvt&lt;wchar_t, char, __mbstate_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2062'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2063'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::numpunct&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2099'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2100'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::num_get&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2100'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2101'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::num_put&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2101'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2102'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::collate&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2102'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2103'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::moneypunct&lt;wchar_t, false&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2103'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2104'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::moneypunct&lt;wchar_t, true&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2104'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2105'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::money_get&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2105'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2106'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::money_put&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2106'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2107'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::__timepunct&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2107'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2108'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::time_get&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2108'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2109'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::time_put&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2109'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2110'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_init_facet&lt;std::messages&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2110'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2111'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='_Impl' mangled-name='_ZNSt6locale5_ImplC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='531' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_ImplC2Em@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='_Impl' mangled-name='_ZNSt6locale5_ImplC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='530' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_ImplC2EPKcm@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
                 <parameter type-id='type-id-4'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
@@ -24957,39 +24963,39 @@ 
             </member-function>
             <member-function access='private'>
               <function-decl name='_M_replace_categories' mangled-name='_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_i' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='552' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_i@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2080' is-artificial='yes'/>
-                <parameter type-id='type-id-2083'/>
-                <parameter type-id='type-id-2074'/>
+                <parameter type-id='type-id-2081' is-artificial='yes'/>
+                <parameter type-id='type-id-2084'/>
+                <parameter type-id='type-id-2075'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='facet' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='340' column='1' is-declaration-only='yes' id='type-id-2069'>
+          <class-decl name='facet' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='340' column='1' is-declaration-only='yes' id='type-id-2070'>
             <data-member access='private' layout-offset-in-bits='64'>
               <var-decl name='_M_refcount' type-id='type-id-594' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='346' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_c_locale' type-id='type-id-2049' mangled-name='_ZNSt6locale5facet11_S_c_localeE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='191' column='1'/>
+              <var-decl name='_S_c_locale' type-id='type-id-2050' mangled-name='_ZNSt6locale5facet11_S_c_localeE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='191' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
-              <var-decl name='_S_c_name' type-id='type-id-2111' mangled-name='_ZNSt6locale5facet9_S_c_nameE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='193' column='1'/>
+              <var-decl name='_S_c_name' type-id='type-id-2112' mangled-name='_ZNSt6locale5facet9_S_c_nameE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='193' column='1'/>
             </data-member>
             <data-member access='private' static='yes'>
               <var-decl name='_S_once' type-id='type-id-386' mangled-name='_ZNSt6locale5facet7_S_onceE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='196' column='1'/>
             </data-member>
             <member-function access='protected' constructor='yes'>
               <function-decl name='facet' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2070' is-artificial='yes'/>
+                <parameter type-id='type-id-2071' is-artificial='yes'/>
                 <parameter type-id='type-id-91'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='facet' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='420' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2070' is-artificial='yes'/>
-                <parameter type-id='type-id-2112'/>
+                <parameter type-id='type-id-2071' is-artificial='yes'/>
+                <parameter type-id='type-id-2113'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
@@ -25000,7 +25006,7 @@ 
             </member-function>
             <member-function access='protected' static='yes'>
               <function-decl name='_S_get_c_locale' mangled-name='_ZNSt6locale5facet15_S_get_c_localeEv' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5facet15_S_get_c_localeEv@@GLIBCXX_3.4'>
-                <return type-id='type-id-2049'/>
+                <return type-id='type-id-2050'/>
               </function-decl>
             </member-function>
             <member-function access='protected' static='yes'>
@@ -25010,60 +25016,60 @@ 
             </member-function>
             <member-function access='private' const='yes'>
               <function-decl name='_M_remove_reference' mangled-name='_ZNKSt6locale5facet19_M_remove_referenceEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='406' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2082' is-artificial='yes'/>
+                <parameter type-id='type-id-2083' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' const='yes'>
               <function-decl name='_M_add_reference' mangled-name='_ZNKSt6locale5facet16_M_add_referenceEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='402' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2082' is-artificial='yes'/>
+                <parameter type-id='type-id-2083' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='protected' static='yes'>
               <function-decl name='_S_create_c_locale' mangled-name='_ZNSt6locale5facet18_S_create_c_localeERP15__locale_structPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5facet18_S_create_c_localeERP15__locale_structPKcS2_@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2050'/>
+                <parameter type-id='type-id-2051'/>
                 <parameter type-id='type-id-4'/>
-                <parameter type-id='type-id-2049'/>
+                <parameter type-id='type-id-2050'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='protected' static='yes'>
               <function-decl name='_S_destroy_c_locale' mangled-name='_ZNSt6locale5facet19_S_destroy_c_localeERP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='143' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5facet19_S_destroy_c_localeERP15__locale_struct@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2050'/>
+                <parameter type-id='type-id-2051'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='protected' static='yes'>
               <function-decl name='_S_clone_c_locale' mangled-name='_ZNSt6locale5facet17_S_clone_c_localeERP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5facet17_S_clone_c_localeERP15__locale_struct@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2050'/>
-                <return type-id='type-id-2049'/>
+                <parameter type-id='type-id-2051'/>
+                <return type-id='type-id-2050'/>
               </function-decl>
             </member-function>
             <member-function access='protected' static='yes'>
               <function-decl name='_S_lc_ctype_c_locale' mangled-name='_ZNSt6locale5facet20_S_lc_ctype_c_localeEP15__locale_structPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2049'/>
+                <parameter type-id='type-id-2050'/>
                 <parameter type-id='type-id-4'/>
-                <return type-id='type-id-2049'/>
+                <return type-id='type-id-2050'/>
               </function-decl>
             </member-function>
             <member-function access='protected' destructor='yes' vtable-offset='-1'>
               <function-decl name='~facet' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2070' is-artificial='yes'/>
+                <parameter type-id='type-id-2071' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='protected' destructor='yes' vtable-offset='-1'>
               <function-decl name='~facet' mangled-name='_ZNSt6locale5facetD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5facetD0Ev@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2070' is-artificial='yes'/>
+                <parameter type-id='type-id-2071' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='protected' destructor='yes' vtable-offset='-1'>
               <function-decl name='~facet' mangled-name='_ZNSt6locale5facetD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/locale.cc' line='225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale5facetD2Ev@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2070' is-artificial='yes'/>
+                <parameter type-id='type-id-2071' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
@@ -25071,139 +25077,139 @@ 
           </class-decl>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='none' type-id='type-id-2113' mangled-name='_ZNSt6locale4noneE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='100' column='1' elf-symbol-id='_ZNSt6locale4noneE@@GLIBCXX_3.4'/>
+          <var-decl name='none' type-id='type-id-2114' mangled-name='_ZNSt6locale4noneE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='100' column='1' elf-symbol-id='_ZNSt6locale4noneE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='ctype' type-id='type-id-2113' mangled-name='_ZNSt6locale5ctypeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='101' column='1' elf-symbol-id='_ZNSt6locale5ctypeE@@GLIBCXX_3.4'/>
+          <var-decl name='ctype' type-id='type-id-2114' mangled-name='_ZNSt6locale5ctypeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='101' column='1' elf-symbol-id='_ZNSt6locale5ctypeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='numeric' type-id='type-id-2113' mangled-name='_ZNSt6locale7numericE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='102' column='1' elf-symbol-id='_ZNSt6locale7numericE@@GLIBCXX_3.4'/>
+          <var-decl name='numeric' type-id='type-id-2114' mangled-name='_ZNSt6locale7numericE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='102' column='1' elf-symbol-id='_ZNSt6locale7numericE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='collate' type-id='type-id-2113' mangled-name='_ZNSt6locale7collateE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='103' column='1' elf-symbol-id='_ZNSt6locale7collateE@@GLIBCXX_3.4'/>
+          <var-decl name='collate' type-id='type-id-2114' mangled-name='_ZNSt6locale7collateE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='103' column='1' elf-symbol-id='_ZNSt6locale7collateE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='time' type-id='type-id-2113' mangled-name='_ZNSt6locale4timeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='104' column='1' elf-symbol-id='_ZNSt6locale4timeE@@GLIBCXX_3.4'/>
+          <var-decl name='time' type-id='type-id-2114' mangled-name='_ZNSt6locale4timeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='104' column='1' elf-symbol-id='_ZNSt6locale4timeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='monetary' type-id='type-id-2113' mangled-name='_ZNSt6locale8monetaryE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='105' column='1' elf-symbol-id='_ZNSt6locale8monetaryE@@GLIBCXX_3.4'/>
+          <var-decl name='monetary' type-id='type-id-2114' mangled-name='_ZNSt6locale8monetaryE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='105' column='1' elf-symbol-id='_ZNSt6locale8monetaryE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='messages' type-id='type-id-2113' mangled-name='_ZNSt6locale8messagesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='106' column='1' elf-symbol-id='_ZNSt6locale8messagesE@@GLIBCXX_3.4'/>
+          <var-decl name='messages' type-id='type-id-2114' mangled-name='_ZNSt6locale8messagesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='106' column='1' elf-symbol-id='_ZNSt6locale8messagesE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='all' type-id='type-id-2113' mangled-name='_ZNSt6locale3allE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='108' column='1' elf-symbol-id='_ZNSt6locale3allE@@GLIBCXX_3.4'/>
+          <var-decl name='all' type-id='type-id-2114' mangled-name='_ZNSt6locale3allE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='108' column='1' elf-symbol-id='_ZNSt6locale3allE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_impl' type-id='type-id-2080' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='282' column='1'/>
+          <var-decl name='_M_impl' type-id='type-id-2081' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='282' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_classic' type-id='type-id-2080' mangled-name='_ZNSt6locale10_S_classicE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='285' column='1'/>
+          <var-decl name='_S_classic' type-id='type-id-2081' mangled-name='_ZNSt6locale10_S_classicE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='285' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_global' type-id='type-id-2080' mangled-name='_ZNSt6locale9_S_globalE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='288' column='1'/>
+          <var-decl name='_S_global' type-id='type-id-2081' mangled-name='_ZNSt6locale9_S_globalE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='288' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_categories' type-id='type-id-2114' mangled-name='_ZNSt6locale13_S_categoriesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='294' column='1'/>
+          <var-decl name='_S_categories' type-id='type-id-2115' mangled-name='_ZNSt6locale13_S_categoriesE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='294' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='_S_once' type-id='type-id-386' mangled-name='_ZNSt6locale7_S_onceE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='309' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2074'/>
+            <parameter type-id='type-id-2075'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <parameter type-id='type-id-965'/>
-            <parameter type-id='type-id-2074'/>
+            <parameter type-id='type-id-2075'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='313' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
-            <parameter type-id='type-id-2080'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
+            <parameter type-id='type-id-2081'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' mangled-name='_ZNSt6localeC2ERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeC2ERKS_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' mangled-name='_ZNSt6localeC2EPNS_5_ImplE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeC2EPNS_5_ImplE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
-            <parameter type-id='type-id-2080'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
+            <parameter type-id='type-id-2081'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='name' mangled-name='_ZNKSt6locale4nameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt6locale4nameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2116' is-artificial='yes'/>
+            <parameter type-id='type-id-2117' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator==' mangled-name='_ZNKSt6localeeqERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt6localeeqERKS_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2116' is-artificial='yes'/>
+            <parameter type-id='type-id-2117' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='_S_normalize_category' mangled-name='_ZNSt6locale21_S_normalize_categoryEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale21_S_normalize_categoryEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2074'/>
-            <return type-id='type-id-2074'/>
+            <parameter type-id='type-id-2075'/>
+            <return type-id='type-id-2075'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt6localeaSERKS_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeaSERKS_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-965'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~locale' mangled-name='_ZNSt6localeD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -25225,7 +25231,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' mangled-name='_ZNSt6localeC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -25237,766 +25243,766 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' mangled-name='_ZNSt6localeC2EPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeC2EPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_coalesce' mangled-name='_ZNSt6locale11_M_coalesceERKS_S1_i' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6locale11_M_coalesceERKS_S1_i@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <parameter type-id='type-id-965'/>
-            <parameter type-id='type-id-2074'/>
+            <parameter type-id='type-id-2075'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' mangled-name='_ZNSt6localeC2ERKS_S1_i' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeC2ERKS_S1_i@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <parameter type-id='type-id-965'/>
-            <parameter type-id='type-id-2074'/>
+            <parameter type-id='type-id-2075'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='locale' mangled-name='_ZNSt6localeC2ERKS_PKci' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6localeC2ERKS_PKci@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2115' is-artificial='yes'/>
+            <parameter type-id='type-id-2116' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2074'/>
+            <parameter type-id='type-id-2075'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <typedef-decl name='__c_locale' type-id='type-id-2024' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale.h' line='63' column='1' id='type-id-2049'/>
-      <class-decl name='__codecvt_abstract_base&lt;char, char, __mbstate_t&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='69' column='1' is-declaration-only='yes' id='type-id-2051'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2072'/>
+      <typedef-decl name='__c_locale' type-id='type-id-2025' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale.h' line='63' column='1' id='type-id-2050'/>
+      <class-decl name='__codecvt_abstract_base&lt;char, char, __mbstate_t&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='69' column='1' is-declaration-only='yes' id='type-id-2052'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2073'/>
         <member-type access='private'>
-          <typedef-decl name='result' type-id='type-id-2073' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='74' column='1' id='type-id-2117'/>
+          <typedef-decl name='result' type-id='type-id-2074' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='74' column='1' id='type-id-2118'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='intern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='75' column='1' id='type-id-2118'/>
+          <typedef-decl name='intern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='75' column='1' id='type-id-2119'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='76' column='1' id='type-id-2119'/>
+          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='76' column='1' id='type-id-2120'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='state_type' type-id='type-id-633' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='77' column='1' id='type-id-2120'/>
+          <typedef-decl name='state_type' type-id='type-id-633' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='77' column='1' id='type-id-2121'/>
         </member-type>
         <member-function access='protected'>
           <function-decl name='__codecvt_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2052' is-artificial='yes'/>
+            <parameter type-id='type-id-2053' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='encoding' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE8encodingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='max_length' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE10max_lengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='220' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='always_noconv' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE13always_noconvEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='in' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE2inERS0_PKcS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <parameter type-id='type-id-2123'/>
             <parameter type-id='type-id-2124'/>
+            <parameter type-id='type-id-2124'/>
             <parameter type-id='type-id-2125'/>
-            <parameter type-id='type-id-2125'/>
             <parameter type-id='type-id-2126'/>
-            <return type-id='type-id-2117'/>
+            <parameter type-id='type-id-2126'/>
+            <parameter type-id='type-id-2127'/>
+            <return type-id='type-id-2118'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='out' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE3outERS0_PKcS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2127'/>
-            <parameter type-id='type-id-2127'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
+            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2128'/>
             <parameter type-id='type-id-2128'/>
-            <parameter type-id='type-id-2129'/>
             <parameter type-id='type-id-2129'/>
             <parameter type-id='type-id-2130'/>
-            <return type-id='type-id-2117'/>
+            <parameter type-id='type-id-2130'/>
+            <parameter type-id='type-id-2131'/>
+            <return type-id='type-id-2118'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='length' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE6lengthERS0_PKcS4_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2124'/>
+            <parameter type-id='type-id-2124'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='unshift' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE7unshiftERS0_PcS3_RS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2129'/>
-            <parameter type-id='type-id-2129'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
+            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2130'/>
             <parameter type-id='type-id-2130'/>
-            <return type-id='type-id-2117'/>
+            <parameter type-id='type-id-2131'/>
+            <return type-id='type-id-2118'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__codecvt_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2052' is-artificial='yes'/>
+            <parameter type-id='type-id-2053' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__codecvt_abstract_base' mangled-name='_ZNSt23__codecvt_abstract_baseIcc11__mbstate_tED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2052' is-artificial='yes'/>
+            <parameter type-id='type-id-2053' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__codecvt_abstract_base' mangled-name='_ZNSt23__codecvt_abstract_baseIcc11__mbstate_tED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2052' is-artificial='yes'/>
+            <parameter type-id='type-id-2053' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_out' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE6do_outERS0_PKcS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2127'/>
-            <parameter type-id='type-id-2127'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
+            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2128'/>
             <parameter type-id='type-id-2128'/>
             <parameter type-id='type-id-2129'/>
-            <parameter type-id='type-id-2129'/>
             <parameter type-id='type-id-2130'/>
-            <return type-id='type-id-2117'/>
+            <parameter type-id='type-id-2130'/>
+            <parameter type-id='type-id-2131'/>
+            <return type-id='type-id-2118'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_unshift' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2129'/>
-            <parameter type-id='type-id-2129'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
+            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2130'/>
             <parameter type-id='type-id-2130'/>
-            <return type-id='type-id-2117'/>
+            <parameter type-id='type-id-2131'/>
+            <return type-id='type-id-2118'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_in' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE5do_inERS0_PKcS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <parameter type-id='type-id-2123'/>
             <parameter type-id='type-id-2124'/>
+            <parameter type-id='type-id-2124'/>
             <parameter type-id='type-id-2125'/>
-            <parameter type-id='type-id-2125'/>
             <parameter type-id='type-id-2126'/>
-            <return type-id='type-id-2117'/>
+            <parameter type-id='type-id-2126'/>
+            <parameter type-id='type-id-2127'/>
+            <return type-id='type-id-2118'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_encoding' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE11do_encodingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_always_noconv' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE16do_always_noconvEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_length' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE9do_lengthERS0_PKcS4_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
-            <parameter type-id='type-id-2122'/>
-            <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <parameter type-id='type-id-2123'/>
+            <parameter type-id='type-id-2124'/>
+            <parameter type-id='type-id-2124'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_max_length' mangled-name='_ZNKSt23__codecvt_abstract_baseIcc11__mbstate_tE13do_max_lengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2121' is-artificial='yes'/>
+            <parameter type-id='type-id-2122' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__codecvt_abstract_base&lt;wchar_t, char, __mbstate_t&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='69' column='1' is-declaration-only='yes' id='type-id-2053'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2072'/>
+      <class-decl name='__codecvt_abstract_base&lt;wchar_t, char, __mbstate_t&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='69' column='1' is-declaration-only='yes' id='type-id-2054'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2073'/>
         <member-type access='private'>
-          <typedef-decl name='result' type-id='type-id-2073' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='74' column='1' id='type-id-2131'/>
+          <typedef-decl name='result' type-id='type-id-2074' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='74' column='1' id='type-id-2132'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='intern_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='75' column='1' id='type-id-2132'/>
+          <typedef-decl name='intern_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='75' column='1' id='type-id-2133'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='76' column='1' id='type-id-2133'/>
+          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='76' column='1' id='type-id-2134'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='state_type' type-id='type-id-633' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='77' column='1' id='type-id-2134'/>
+          <typedef-decl name='state_type' type-id='type-id-633' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='77' column='1' id='type-id-2135'/>
         </member-type>
         <member-function access='protected'>
           <function-decl name='__codecvt_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2054' is-artificial='yes'/>
+            <parameter type-id='type-id-2055' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='encoding' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE8encodingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='max_length' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE10max_lengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='220' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='always_noconv' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE13always_noconvEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='in' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE2inERS0_PKcS4_RS4_PwS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <parameter type-id='type-id-2137'/>
             <parameter type-id='type-id-2138'/>
-            <parameter type-id='type-id-2139'/>
+            <parameter type-id='type-id-2138'/>
             <parameter type-id='type-id-2139'/>
             <parameter type-id='type-id-2140'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2140'/>
+            <parameter type-id='type-id-2141'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='out' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE3outERS0_PKwS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2141'/>
-            <parameter type-id='type-id-2141'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
+            <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2142'/>
             <parameter type-id='type-id-2142'/>
             <parameter type-id='type-id-2143'/>
-            <parameter type-id='type-id-2143'/>
             <parameter type-id='type-id-2144'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2144'/>
+            <parameter type-id='type-id-2145'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='length' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE6lengthERS0_PKcS4_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2138'/>
+            <parameter type-id='type-id-2138'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='unshift' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE7unshiftERS0_PcS3_RS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2143'/>
-            <parameter type-id='type-id-2143'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
+            <parameter type-id='type-id-2137'/>
             <parameter type-id='type-id-2144'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2144'/>
+            <parameter type-id='type-id-2145'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__codecvt_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2054' is-artificial='yes'/>
+            <parameter type-id='type-id-2055' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__codecvt_abstract_base' mangled-name='_ZNSt23__codecvt_abstract_baseIwc11__mbstate_tED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2054' is-artificial='yes'/>
+            <parameter type-id='type-id-2055' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__codecvt_abstract_base' mangled-name='_ZNSt23__codecvt_abstract_baseIwc11__mbstate_tED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2054' is-artificial='yes'/>
+            <parameter type-id='type-id-2055' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_out' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE6do_outERS0_PKwS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2141'/>
-            <parameter type-id='type-id-2141'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
+            <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2142'/>
             <parameter type-id='type-id-2142'/>
             <parameter type-id='type-id-2143'/>
-            <parameter type-id='type-id-2143'/>
             <parameter type-id='type-id-2144'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2144'/>
+            <parameter type-id='type-id-2145'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_unshift' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2143'/>
-            <parameter type-id='type-id-2143'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
+            <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2144'/>
             <parameter type-id='type-id-2144'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2145'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_in' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE5do_inERS0_PKcS4_RS4_PwS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <parameter type-id='type-id-2137'/>
             <parameter type-id='type-id-2138'/>
+            <parameter type-id='type-id-2138'/>
             <parameter type-id='type-id-2139'/>
-            <parameter type-id='type-id-2139'/>
             <parameter type-id='type-id-2140'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2140'/>
+            <parameter type-id='type-id-2141'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_encoding' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE11do_encodingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_always_noconv' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE16do_always_noconvEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_length' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE9do_lengthERS0_PKcS4_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
-            <parameter type-id='type-id-2136'/>
-            <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <parameter type-id='type-id-2137'/>
+            <parameter type-id='type-id-2138'/>
+            <parameter type-id='type-id-2138'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_max_length' mangled-name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE13do_max_lengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2135' is-artificial='yes'/>
+            <parameter type-id='type-id-2136' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='codecvt&lt;char, char, __mbstate_t&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='341' column='1' is-declaration-only='yes' id='type-id-956'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2051'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2052'/>
         <member-type access='private'>
-          <typedef-decl name='intern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='346' column='1' id='type-id-2031'/>
+          <typedef-decl name='intern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='346' column='1' id='type-id-2032'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='347' column='1' id='type-id-2027'/>
+          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='347' column='1' id='type-id-2028'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='state_type' type-id='type-id-648' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='348' column='1' id='type-id-2060'/>
+          <typedef-decl name='state_type' type-id='type-id-648' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='348' column='1' id='type-id-2061'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_codecvt' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='351' column='1'/>
+          <var-decl name='_M_c_locale_codecvt' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='351' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7codecvtIcc11__mbstate_tE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='32' column='1' elf-symbol-id='_ZNSt7codecvtIcc11__mbstate_tE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7codecvtIcc11__mbstate_tE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='32' column='1' elf-symbol-id='_ZNSt7codecvtIcc11__mbstate_tE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='codecvt' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2055' is-artificial='yes'/>
+            <parameter type-id='type-id-2056' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2055' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2056' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt' mangled-name='_ZNSt7codecvtIcc11__mbstate_tEC2Em' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='38' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIcc11__mbstate_tEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2055' is-artificial='yes'/>
+            <parameter type-id='type-id-2056' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt' mangled-name='_ZNSt7codecvtIcc11__mbstate_tEC2EP15__locale_structm' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIcc11__mbstate_tEC2EP15__locale_structm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2055' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2056' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2055' is-artificial='yes'/>
+            <parameter type-id='type-id-2056' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt' mangled-name='_ZNSt7codecvtIcc11__mbstate_tED0Ev' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='50' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIcc11__mbstate_tED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2055' is-artificial='yes'/>
+            <parameter type-id='type-id-2056' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt' mangled-name='_ZNSt7codecvtIcc11__mbstate_tED2Ev' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='50' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIcc11__mbstate_tED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2055' is-artificial='yes'/>
+            <parameter type-id='type-id-2056' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_out' mangled-name='_ZNKSt7codecvtIcc11__mbstate_tE6do_outERS0_PKcS4_RS4_PcS6_RS6_' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIcc11__mbstate_tE6do_outERS0_PKcS4_RS4_PcS6_RS6_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1301' is-artificial='yes'/>
-            <parameter type-id='type-id-2061'/>
-            <parameter type-id='type-id-2033'/>
-            <parameter type-id='type-id-2033'/>
+            <parameter type-id='type-id-1302' is-artificial='yes'/>
+            <parameter type-id='type-id-2062'/>
+            <parameter type-id='type-id-2034'/>
             <parameter type-id='type-id-2034'/>
-            <parameter type-id='type-id-2056'/>
-            <parameter type-id='type-id-2056'/>
+            <parameter type-id='type-id-2035'/>
             <parameter type-id='type-id-2057'/>
-            <return type-id='type-id-2073'/>
+            <parameter type-id='type-id-2057'/>
+            <parameter type-id='type-id-2058'/>
+            <return type-id='type-id-2074'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_unshift' mangled-name='_ZNKSt7codecvtIcc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIcc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1301' is-artificial='yes'/>
-            <parameter type-id='type-id-2061'/>
-            <parameter type-id='type-id-2056'/>
-            <parameter type-id='type-id-2056'/>
+            <parameter type-id='type-id-1302' is-artificial='yes'/>
+            <parameter type-id='type-id-2062'/>
+            <parameter type-id='type-id-2057'/>
             <parameter type-id='type-id-2057'/>
-            <return type-id='type-id-2073'/>
+            <parameter type-id='type-id-2058'/>
+            <return type-id='type-id-2074'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_in' mangled-name='_ZNKSt7codecvtIcc11__mbstate_tE5do_inERS0_PKcS4_RS4_PcS6_RS6_' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIcc11__mbstate_tE5do_inERS0_PKcS4_RS4_PcS6_RS6_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1301' is-artificial='yes'/>
-            <parameter type-id='type-id-2061'/>
-            <parameter type-id='type-id-2029'/>
-            <parameter type-id='type-id-2029'/>
+            <parameter type-id='type-id-1302' is-artificial='yes'/>
+            <parameter type-id='type-id-2062'/>
             <parameter type-id='type-id-2030'/>
-            <parameter type-id='type-id-2058'/>
-            <parameter type-id='type-id-2058'/>
+            <parameter type-id='type-id-2030'/>
+            <parameter type-id='type-id-2031'/>
+            <parameter type-id='type-id-2059'/>
             <parameter type-id='type-id-2059'/>
-            <return type-id='type-id-2073'/>
+            <parameter type-id='type-id-2060'/>
+            <return type-id='type-id-2074'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_encoding' mangled-name='_ZNKSt7codecvtIcc11__mbstate_tE11do_encodingEv' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIcc11__mbstate_tE11do_encodingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1301' is-artificial='yes'/>
+            <parameter type-id='type-id-1302' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_always_noconv' mangled-name='_ZNKSt7codecvtIcc11__mbstate_tE16do_always_noconvEv' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIcc11__mbstate_tE16do_always_noconvEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1301' is-artificial='yes'/>
+            <parameter type-id='type-id-1302' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_length' mangled-name='_ZNKSt7codecvtIcc11__mbstate_tE9do_lengthERS0_PKcS4_m' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='103' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIcc11__mbstate_tE9do_lengthERS0_PKcS4_m@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1301' is-artificial='yes'/>
-            <parameter type-id='type-id-2061'/>
-            <parameter type-id='type-id-2029'/>
-            <parameter type-id='type-id-2029'/>
+            <parameter type-id='type-id-1302' is-artificial='yes'/>
+            <parameter type-id='type-id-2062'/>
+            <parameter type-id='type-id-2030'/>
+            <parameter type-id='type-id-2030'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_max_length' mangled-name='_ZNKSt7codecvtIcc11__mbstate_tE13do_max_lengthEv' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='112' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIcc11__mbstate_tE13do_max_lengthEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1301' is-artificial='yes'/>
+            <parameter type-id='type-id-1302' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='codecvt&lt;wchar_t, char, __mbstate_t&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='399' column='1' is-declaration-only='yes' id='type-id-976'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2053'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2054'/>
         <member-type access='private'>
-          <typedef-decl name='intern_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='404' column='1' id='type-id-2040'/>
+          <typedef-decl name='intern_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='404' column='1' id='type-id-2041'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='405' column='1' id='type-id-2036'/>
+          <typedef-decl name='extern_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='405' column='1' id='type-id-2037'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='state_type' type-id='type-id-648' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='406' column='1' id='type-id-2067'/>
+          <typedef-decl name='state_type' type-id='type-id-648' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='406' column='1' id='type-id-2068'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_codecvt' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='409' column='1'/>
+          <var-decl name='_M_c_locale_codecvt' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='409' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7codecvtIwc11__mbstate_tE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='35' column='1' elf-symbol-id='_ZNSt7codecvtIwc11__mbstate_tE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7codecvtIwc11__mbstate_tE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='35' column='1' elf-symbol-id='_ZNSt7codecvtIwc11__mbstate_tE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='codecvt' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2062' is-artificial='yes'/>
+            <parameter type-id='type-id-2063' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2062' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2063' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt' mangled-name='_ZNSt7codecvtIwc11__mbstate_tEC2Em' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIwc11__mbstate_tEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2062' is-artificial='yes'/>
+            <parameter type-id='type-id-2063' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt' mangled-name='_ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structm' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='124' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2062' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2063' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2062' is-artificial='yes'/>
+            <parameter type-id='type-id-2063' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt' mangled-name='_ZNSt7codecvtIwc11__mbstate_tED0Ev' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIwc11__mbstate_tED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2062' is-artificial='yes'/>
+            <parameter type-id='type-id-2063' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt' mangled-name='_ZNSt7codecvtIwc11__mbstate_tED2Ev' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7codecvtIwc11__mbstate_tED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2062' is-artificial='yes'/>
+            <parameter type-id='type-id-2063' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_out' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE6do_outERS0_PKwS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='425' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
-            <parameter type-id='type-id-2068'/>
-            <parameter type-id='type-id-2042'/>
-            <parameter type-id='type-id-2042'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
+            <parameter type-id='type-id-2069'/>
+            <parameter type-id='type-id-2043'/>
             <parameter type-id='type-id-2043'/>
-            <parameter type-id='type-id-2063'/>
-            <parameter type-id='type-id-2063'/>
+            <parameter type-id='type-id-2044'/>
             <parameter type-id='type-id-2064'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2064'/>
+            <parameter type-id='type-id-2065'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_out' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE6do_outERS0_PKwS4_RS4_PcS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/codecvt_members.cc' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIwc11__mbstate_tE6do_outERS0_PKwS4_RS4_PcS6_RS6_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
-            <parameter type-id='type-id-2068'/>
-            <parameter type-id='type-id-2042'/>
-            <parameter type-id='type-id-2042'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
+            <parameter type-id='type-id-2069'/>
             <parameter type-id='type-id-2043'/>
-            <parameter type-id='type-id-2063'/>
-            <parameter type-id='type-id-2063'/>
+            <parameter type-id='type-id-2043'/>
+            <parameter type-id='type-id-2044'/>
+            <parameter type-id='type-id-2064'/>
             <parameter type-id='type-id-2064'/>
-            <return type-id='type-id-2073'/>
+            <parameter type-id='type-id-2065'/>
+            <return type-id='type-id-2074'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_unshift' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIwc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
-            <parameter type-id='type-id-2068'/>
-            <parameter type-id='type-id-2063'/>
-            <parameter type-id='type-id-2063'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
+            <parameter type-id='type-id-2069'/>
             <parameter type-id='type-id-2064'/>
-            <return type-id='type-id-2073'/>
+            <parameter type-id='type-id-2064'/>
+            <parameter type-id='type-id-2065'/>
+            <return type-id='type-id-2074'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_in' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE5do_inERS0_PKcS4_RS4_PwS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='436' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
-            <parameter type-id='type-id-2068'/>
-            <parameter type-id='type-id-2038'/>
-            <parameter type-id='type-id-2038'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
+            <parameter type-id='type-id-2069'/>
             <parameter type-id='type-id-2039'/>
-            <parameter type-id='type-id-2065'/>
-            <parameter type-id='type-id-2065'/>
+            <parameter type-id='type-id-2039'/>
+            <parameter type-id='type-id-2040'/>
             <parameter type-id='type-id-2066'/>
-            <return type-id='type-id-2131'/>
+            <parameter type-id='type-id-2066'/>
+            <parameter type-id='type-id-2067'/>
+            <return type-id='type-id-2132'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_in' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE5do_inERS0_PKcS4_RS4_PwS6_RS6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/codecvt_members.cc' line='119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIwc11__mbstate_tE5do_inERS0_PKcS4_RS4_PwS6_RS6_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
-            <parameter type-id='type-id-2068'/>
-            <parameter type-id='type-id-2038'/>
-            <parameter type-id='type-id-2038'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
+            <parameter type-id='type-id-2069'/>
             <parameter type-id='type-id-2039'/>
-            <parameter type-id='type-id-2065'/>
-            <parameter type-id='type-id-2065'/>
+            <parameter type-id='type-id-2039'/>
+            <parameter type-id='type-id-2040'/>
             <parameter type-id='type-id-2066'/>
-            <return type-id='type-id-2073'/>
+            <parameter type-id='type-id-2066'/>
+            <parameter type-id='type-id-2067'/>
+            <return type-id='type-id-2074'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_encoding' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE11do_encodingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIwc11__mbstate_tE11do_encodingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_always_noconv' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE16do_always_noconvEv' filepath='../../../.././libstdc++-v3/src/c++98/codecvt.cc' line='145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIwc11__mbstate_tE16do_always_noconvEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_length' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE9do_lengthERS0_PKcS4_m' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='449' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIwc11__mbstate_tE9do_lengthERS0_PKcS4_m@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
-            <parameter type-id='type-id-2068'/>
-            <parameter type-id='type-id-2038'/>
-            <parameter type-id='type-id-2038'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
+            <parameter type-id='type-id-2069'/>
+            <parameter type-id='type-id-2039'/>
+            <parameter type-id='type-id-2039'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_max_length' mangled-name='_ZNKSt7codecvtIwc11__mbstate_tE13do_max_lengthEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7codecvtIwc11__mbstate_tE13do_max_lengthEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1303' is-artificial='yes'/>
+            <parameter type-id='type-id-1304' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
       </class-decl>
       <function-decl name='min&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1955'/>
-        <parameter type-id='type-id-1955'/>
-        <return type-id='type-id-1955'/>
+        <parameter type-id='type-id-1956'/>
+        <parameter type-id='type-id-1956'/>
+        <return type-id='type-id-1956'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/complex_io.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <type-decl name='complex double' size-in-bits='128' id='type-id-2145'/>
-    <type-decl name='complex float' size-in-bits='64' id='type-id-2146'/>
-    <type-decl name='complex long double' size-in-bits='256' id='type-id-2147'/>
-    <array-type-def dimensions='1' type-id='type-id-2084' size-in-bits='infinite' id='type-id-2079'>
+    <type-decl name='complex double' size-in-bits='128' id='type-id-2146'/>
+    <type-decl name='complex float' size-in-bits='64' id='type-id-2147'/>
+    <type-decl name='complex long double' size-in-bits='256' id='type-id-2148'/>
+    <array-type-def dimensions='1' type-id='type-id-2085' size-in-bits='infinite' id='type-id-2080'>
       <subrange length='infinite' id='type-id-626'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-2047' size-in-bits='infinite' id='type-id-2078'>
+    <array-type-def dimensions='1' type-id='type-id-2048' size-in-bits='infinite' id='type-id-2079'>
       <subrange length='infinite' id='type-id-626'/>
     </array-type-def>
-    <pointer-type-def type-id='type-id-670' size-in-bits='64' id='type-id-2148'/>
-    <qualified-type-def type-id='type-id-2148' const='yes' id='type-id-2114'/>
-    <qualified-type-def type-id='type-id-254' const='yes' id='type-id-2149'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2149' size-in-bits='64' id='type-id-2150'/>
-    <qualified-type-def type-id='type-id-374' const='yes' id='type-id-2151'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2151' size-in-bits='64' id='type-id-2152'/>
-    <qualified-type-def type-id='type-id-375' const='yes' id='type-id-2153'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2153' size-in-bits='64' id='type-id-2154'/>
-    <qualified-type-def type-id='type-id-2155' const='yes' id='type-id-2156'/>
-    <pointer-type-def type-id='type-id-2156' size-in-bits='64' id='type-id-2157'/>
-    <qualified-type-def type-id='type-id-2158' const='yes' id='type-id-2159'/>
-    <pointer-type-def type-id='type-id-2159' size-in-bits='64' id='type-id-2160'/>
-    <qualified-type-def type-id='type-id-2161' const='yes' id='type-id-2162'/>
-    <pointer-type-def type-id='type-id-2162' size-in-bits='64' id='type-id-2163'/>
-    <qualified-type-def type-id='type-id-2164' const='yes' id='type-id-2165'/>
-    <pointer-type-def type-id='type-id-2165' size-in-bits='64' id='type-id-2166'/>
-    <qualified-type-def type-id='type-id-2167' const='yes' id='type-id-2168'/>
-    <pointer-type-def type-id='type-id-2168' size-in-bits='64' id='type-id-2169'/>
-    <qualified-type-def type-id='type-id-2170' const='yes' id='type-id-2171'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2171' size-in-bits='64' id='type-id-2172'/>
-    <pointer-type-def type-id='type-id-2171' size-in-bits='64' id='type-id-2173'/>
-    <qualified-type-def type-id='type-id-2174' const='yes' id='type-id-2175'/>
-    <qualified-type-def type-id='type-id-2176' const='yes' id='type-id-2177'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2177' size-in-bits='64' id='type-id-2178'/>
-    <pointer-type-def type-id='type-id-2177' size-in-bits='64' id='type-id-2179'/>
-    <qualified-type-def type-id='type-id-2180' const='yes' id='type-id-2181'/>
-    <qualified-type-def type-id='type-id-2182' const='yes' id='type-id-2183'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2183' size-in-bits='64' id='type-id-2184'/>
-    <pointer-type-def type-id='type-id-2183' size-in-bits='64' id='type-id-2185'/>
-    <qualified-type-def type-id='type-id-2186' const='yes' id='type-id-2187'/>
-    <qualified-type-def type-id='type-id-1001' const='yes' id='type-id-2188'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2188' size-in-bits='64' id='type-id-2189'/>
-    <pointer-type-def type-id='type-id-2188' size-in-bits='64' id='type-id-2190'/>
-    <qualified-type-def type-id='type-id-983' const='yes' id='type-id-2191'/>
-    <pointer-type-def type-id='type-id-2191' size-in-bits='64' id='type-id-1031'/>
-    <qualified-type-def type-id='type-id-1015' const='yes' id='type-id-1026'/>
-    <qualified-type-def type-id='type-id-995' const='yes' id='type-id-1027'/>
-    <qualified-type-def type-id='type-id-958' const='yes' id='type-id-1028'/>
-    <qualified-type-def type-id='type-id-964' const='yes' id='type-id-1029'/>
-    <qualified-type-def type-id='type-id-996' const='yes' id='type-id-2192'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2192' size-in-bits='64' id='type-id-965'/>
-    <pointer-type-def type-id='type-id-2192' size-in-bits='64' id='type-id-2116'/>
-    <qualified-type-def type-id='type-id-2076' const='yes' id='type-id-2193'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2193' size-in-bits='64' id='type-id-2081'/>
-    <pointer-type-def type-id='type-id-2193' size-in-bits='64' id='type-id-2083'/>
-    <qualified-type-def type-id='type-id-2074' const='yes' id='type-id-2113'/>
-    <qualified-type-def type-id='type-id-2069' const='yes' id='type-id-2194'/>
-    <pointer-type-def type-id='type-id-2194' size-in-bits='64' id='type-id-2082'/>
-    <pointer-type-def type-id='type-id-2082' size-in-bits='64' id='type-id-2077'/>
-    <qualified-type-def type-id='type-id-2047' const='yes' id='type-id-2195'/>
-    <pointer-type-def type-id='type-id-2195' size-in-bits='64' id='type-id-2084'/>
-    <reference-type-def kind='lvalue' type-id='type-id-254' size-in-bits='64' id='type-id-1046'/>
-    <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-1045'/>
-    <reference-type-def kind='lvalue' type-id='type-id-375' size-in-bits='64' id='type-id-1047'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1297' size-in-bits='64' id='type-id-2196'/>
-    <pointer-type-def type-id='type-id-1297' size-in-bits='64' id='type-id-991'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2197' size-in-bits='64' id='type-id-2198'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1298' size-in-bits='64' id='type-id-2199'/>
-    <pointer-type-def type-id='type-id-1298' size-in-bits='64' id='type-id-1006'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2200' size-in-bits='64' id='type-id-2201'/>
-    <pointer-type-def type-id='type-id-2158' size-in-bits='64' id='type-id-2202'/>
-    <pointer-type-def type-id='type-id-2161' size-in-bits='64' id='type-id-2203'/>
-    <pointer-type-def type-id='type-id-2164' size-in-bits='64' id='type-id-2204'/>
-    <pointer-type-def type-id='type-id-2167' size-in-bits='64' id='type-id-2205'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2170' size-in-bits='64' id='type-id-2206'/>
-    <pointer-type-def type-id='type-id-2170' size-in-bits='64' id='type-id-2207'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2176' size-in-bits='64' id='type-id-2208'/>
-    <pointer-type-def type-id='type-id-2176' size-in-bits='64' id='type-id-2209'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2182' size-in-bits='64' id='type-id-2210'/>
-    <pointer-type-def type-id='type-id-2182' size-in-bits='64' id='type-id-2211'/>
-    <pointer-type-def type-id='type-id-983' size-in-bits='64' id='type-id-1032'/>
-    <pointer-type-def type-id='type-id-996' size-in-bits='64' id='type-id-2115'/>
-    <pointer-type-def type-id='type-id-2076' size-in-bits='64' id='type-id-2080'/>
+    <pointer-type-def type-id='type-id-670' size-in-bits='64' id='type-id-2149'/>
+    <qualified-type-def type-id='type-id-2149' const='yes' id='type-id-2115'/>
+    <qualified-type-def type-id='type-id-254' const='yes' id='type-id-2150'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2150' size-in-bits='64' id='type-id-2151'/>
+    <qualified-type-def type-id='type-id-374' const='yes' id='type-id-2152'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2152' size-in-bits='64' id='type-id-2153'/>
+    <qualified-type-def type-id='type-id-375' const='yes' id='type-id-2154'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2154' size-in-bits='64' id='type-id-2155'/>
+    <qualified-type-def type-id='type-id-2156' const='yes' id='type-id-2157'/>
+    <pointer-type-def type-id='type-id-2157' size-in-bits='64' id='type-id-2158'/>
+    <qualified-type-def type-id='type-id-2159' const='yes' id='type-id-2160'/>
+    <pointer-type-def type-id='type-id-2160' size-in-bits='64' id='type-id-2161'/>
+    <qualified-type-def type-id='type-id-2162' const='yes' id='type-id-2163'/>
+    <pointer-type-def type-id='type-id-2163' size-in-bits='64' id='type-id-2164'/>
+    <qualified-type-def type-id='type-id-2165' const='yes' id='type-id-2166'/>
+    <pointer-type-def type-id='type-id-2166' size-in-bits='64' id='type-id-2167'/>
+    <qualified-type-def type-id='type-id-2168' const='yes' id='type-id-2169'/>
+    <pointer-type-def type-id='type-id-2169' size-in-bits='64' id='type-id-2170'/>
+    <qualified-type-def type-id='type-id-2171' const='yes' id='type-id-2172'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2172' size-in-bits='64' id='type-id-2173'/>
+    <pointer-type-def type-id='type-id-2172' size-in-bits='64' id='type-id-2174'/>
+    <qualified-type-def type-id='type-id-2175' const='yes' id='type-id-2176'/>
+    <qualified-type-def type-id='type-id-2177' const='yes' id='type-id-2178'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2178' size-in-bits='64' id='type-id-2179'/>
+    <pointer-type-def type-id='type-id-2178' size-in-bits='64' id='type-id-2180'/>
+    <qualified-type-def type-id='type-id-2181' const='yes' id='type-id-2182'/>
+    <qualified-type-def type-id='type-id-2183' const='yes' id='type-id-2184'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2184' size-in-bits='64' id='type-id-2185'/>
+    <pointer-type-def type-id='type-id-2184' size-in-bits='64' id='type-id-2186'/>
+    <qualified-type-def type-id='type-id-2187' const='yes' id='type-id-2188'/>
+    <qualified-type-def type-id='type-id-1001' const='yes' id='type-id-2189'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2189' size-in-bits='64' id='type-id-2190'/>
+    <pointer-type-def type-id='type-id-2189' size-in-bits='64' id='type-id-2191'/>
+    <qualified-type-def type-id='type-id-983' const='yes' id='type-id-2192'/>
+    <pointer-type-def type-id='type-id-2192' size-in-bits='64' id='type-id-1032'/>
+    <qualified-type-def type-id='type-id-1015' const='yes' id='type-id-1027'/>
+    <qualified-type-def type-id='type-id-995' const='yes' id='type-id-1028'/>
+    <qualified-type-def type-id='type-id-958' const='yes' id='type-id-1029'/>
+    <qualified-type-def type-id='type-id-964' const='yes' id='type-id-1030'/>
+    <qualified-type-def type-id='type-id-996' const='yes' id='type-id-2193'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2193' size-in-bits='64' id='type-id-965'/>
+    <pointer-type-def type-id='type-id-2193' size-in-bits='64' id='type-id-2117'/>
+    <qualified-type-def type-id='type-id-2077' const='yes' id='type-id-2194'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2194' size-in-bits='64' id='type-id-2082'/>
+    <pointer-type-def type-id='type-id-2194' size-in-bits='64' id='type-id-2084'/>
+    <qualified-type-def type-id='type-id-2075' const='yes' id='type-id-2114'/>
+    <qualified-type-def type-id='type-id-2070' const='yes' id='type-id-2195'/>
+    <pointer-type-def type-id='type-id-2195' size-in-bits='64' id='type-id-2083'/>
+    <pointer-type-def type-id='type-id-2083' size-in-bits='64' id='type-id-2078'/>
+    <qualified-type-def type-id='type-id-2048' const='yes' id='type-id-2196'/>
+    <pointer-type-def type-id='type-id-2196' size-in-bits='64' id='type-id-2085'/>
+    <reference-type-def kind='lvalue' type-id='type-id-254' size-in-bits='64' id='type-id-1047'/>
+    <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-1046'/>
+    <reference-type-def kind='lvalue' type-id='type-id-375' size-in-bits='64' id='type-id-1048'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1298' size-in-bits='64' id='type-id-2197'/>
+    <pointer-type-def type-id='type-id-1298' size-in-bits='64' id='type-id-991'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2198' size-in-bits='64' id='type-id-2199'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1299' size-in-bits='64' id='type-id-2200'/>
+    <pointer-type-def type-id='type-id-1299' size-in-bits='64' id='type-id-1006'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2201' size-in-bits='64' id='type-id-2202'/>
+    <pointer-type-def type-id='type-id-2159' size-in-bits='64' id='type-id-2203'/>
+    <pointer-type-def type-id='type-id-2162' size-in-bits='64' id='type-id-2204'/>
+    <pointer-type-def type-id='type-id-2165' size-in-bits='64' id='type-id-2205'/>
+    <pointer-type-def type-id='type-id-2168' size-in-bits='64' id='type-id-2206'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2171' size-in-bits='64' id='type-id-2207'/>
+    <pointer-type-def type-id='type-id-2171' size-in-bits='64' id='type-id-2208'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2177' size-in-bits='64' id='type-id-2209'/>
+    <pointer-type-def type-id='type-id-2177' size-in-bits='64' id='type-id-2210'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2183' size-in-bits='64' id='type-id-2211'/>
+    <pointer-type-def type-id='type-id-2183' size-in-bits='64' id='type-id-2212'/>
+    <pointer-type-def type-id='type-id-983' size-in-bits='64' id='type-id-1033'/>
+    <pointer-type-def type-id='type-id-996' size-in-bits='64' id='type-id-2116'/>
+    <pointer-type-def type-id='type-id-2077' size-in-bits='64' id='type-id-2081'/>
     <namespace-decl name='std'>
       <class-decl name='__false_type' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/cpp_type_traits.h' line='84' column='1' id='type-id-869'/>
       <enum-decl name='_Ios_Fmtflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='53' column='1' id='type-id-1016'>
@@ -26021,215 +26027,215 @@ 
         <enumerator name='_S_floatfield' value='260'/>
         <enumerator name='_S_ios_fmtflags_end' value='65536'/>
       </enum-decl>
-      <class-decl name='__ctype_abstract_base&lt;wchar_t&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='145' column='1' id='type-id-2155'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2212'/>
+      <class-decl name='__ctype_abstract_base&lt;wchar_t&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='145' column='1' id='type-id-2156'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2213'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='150' column='1' id='type-id-2213'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='150' column='1' id='type-id-2214'/>
         </member-type>
         <member-function access='private' const='yes'>
           <function-decl name='widen' mangled-name='_ZNKSt21__ctype_abstract_baseIwE5widenEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='288' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2213'/>
+            <return type-id='type-id-2214'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='__ctype_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2214' is-artificial='yes'/>
+            <parameter type-id='type-id-2215' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='narrow' mangled-name='_ZNKSt21__ctype_abstract_baseIwE6narrowEwc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2213'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2214'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is' mangled-name='_ZNKSt21__ctype_abstract_baseIwE2isEtw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2213'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2214'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='widen' mangled-name='_ZNKSt21__ctype_abstract_baseIwE5widenEPKcS2_Pw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='307' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2217'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='toupper' mangled-name='_ZNKSt21__ctype_abstract_baseIwE7toupperEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2213'/>
-            <return type-id='type-id-2213'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2214'/>
+            <return type-id='type-id-2214'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='scan_not' mangled-name='_ZNKSt21__ctype_abstract_baseIwE8scan_notEtPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2217'/>
-            <parameter type-id='type-id-2217'/>
-            <return type-id='type-id-2217'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2218'/>
+            <parameter type-id='type-id-2218'/>
+            <return type-id='type-id-2218'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__ctype_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2214' is-artificial='yes'/>
+            <parameter type-id='type-id-2215' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__ctype_abstract_base' mangled-name='_ZNSt21__ctype_abstract_baseIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2214' is-artificial='yes'/>
+            <parameter type-id='type-id-2215' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__ctype_abstract_base' mangled-name='_ZNSt21__ctype_abstract_baseIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2214' is-artificial='yes'/>
+            <parameter type-id='type-id-2215' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_is' mangled-name='_ZNKSt21__ctype_abstract_baseIwE5do_isEtw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='373' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2213'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2214'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_is' mangled-name='_ZNKSt21__ctype_abstract_baseIwE5do_isEPKwS2_Pt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='392' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2217'/>
-            <parameter type-id='type-id-2217'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2218'/>
             <parameter type-id='type-id-2218'/>
-            <return type-id='type-id-2217'/>
+            <parameter type-id='type-id-2219'/>
+            <return type-id='type-id-2218'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_scan_is' mangled-name='_ZNKSt21__ctype_abstract_baseIwE10do_scan_isEtPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='411' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2217'/>
-            <parameter type-id='type-id-2217'/>
-            <return type-id='type-id-2217'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2218'/>
+            <parameter type-id='type-id-2218'/>
+            <return type-id='type-id-2218'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_scan_not' mangled-name='_ZNKSt21__ctype_abstract_baseIwE11do_scan_notEtPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='430' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2217'/>
-            <parameter type-id='type-id-2217'/>
-            <return type-id='type-id-2217'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2218'/>
+            <parameter type-id='type-id-2218'/>
+            <return type-id='type-id-2218'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt21__ctype_abstract_baseIwE10do_toupperEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='448' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2213'/>
-            <return type-id='type-id-2213'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2214'/>
+            <return type-id='type-id-2214'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt21__ctype_abstract_baseIwE10do_toupperEPwPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='465' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
             <parameter type-id='type-id-2217'/>
-            <return type-id='type-id-2217'/>
+            <parameter type-id='type-id-2218'/>
+            <return type-id='type-id-2218'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt21__ctype_abstract_baseIwE10do_tolowerEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='481' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2213'/>
-            <return type-id='type-id-2213'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2214'/>
+            <return type-id='type-id-2214'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt21__ctype_abstract_baseIwE10do_tolowerEPwPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='498' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
             <parameter type-id='type-id-2217'/>
-            <return type-id='type-id-2217'/>
+            <parameter type-id='type-id-2218'/>
+            <return type-id='type-id-2218'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_widen' mangled-name='_ZNKSt21__ctype_abstract_baseIwE8do_widenEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='517' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2213'/>
+            <return type-id='type-id-2214'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='11'>
           <function-decl name='do_widen' mangled-name='_ZNKSt21__ctype_abstract_baseIwE8do_widenEPKcS2_Pw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2217'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='12'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt21__ctype_abstract_baseIwE9do_narrowEwc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='559' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2213'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2214'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='13'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt21__ctype_abstract_baseIwE9do_narrowEPKwS2_cPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='584' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2157' is-artificial='yes'/>
-            <parameter type-id='type-id-2217'/>
-            <parameter type-id='type-id-2217'/>
+            <parameter type-id='type-id-2158' is-artificial='yes'/>
+            <parameter type-id='type-id-2218'/>
+            <parameter type-id='type-id-2218'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-94'/>
-            <return type-id='type-id-2217'/>
+            <return type-id='type-id-2218'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='90' column='1' id='type-id-2219'/>
+      <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='90' column='1' id='type-id-2220'/>
       <class-decl name='forward_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='96' column='1' id='type-id-870'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2219'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2220'/>
       </class-decl>
-      <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='100' column='1' id='type-id-2220'>
+      <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='100' column='1' id='type-id-2221'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-870'/>
       </class-decl>
       <class-decl name='random_access_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='104' column='1' id='type-id-348'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2220'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2221'/>
       </class-decl>
-      <class-decl name='complex&lt;float&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1039' column='1' id='type-id-2176'>
+      <class-decl name='complex&lt;float&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1039' column='1' id='type-id-2177'>
         <member-type access='public'>
-          <typedef-decl name='_ComplexT' type-id='type-id-2146' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1042' column='1' id='type-id-2180'/>
+          <typedef-decl name='_ComplexT' type-id='type-id-2147' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1042' column='1' id='type-id-2181'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_value' type-id='type-id-2180' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1180' column='1'/>
+          <var-decl name='_M_value' type-id='type-id-2181' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1180' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1044' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2209' is-artificial='yes'/>
-            <parameter type-id='type-id-2180'/>
+            <parameter type-id='type-id-2210' is-artificial='yes'/>
+            <parameter type-id='type-id-2181'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1046' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2209' is-artificial='yes'/>
+            <parameter type-id='type-id-2210' is-artificial='yes'/>
             <parameter type-id='type-id-374'/>
             <parameter type-id='type-id-374'/>
             <return type-id='type-id-5'/>
@@ -26237,55 +26243,55 @@ 
         </member-function>
         <member-function access='public'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1056' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2209' is-artificial='yes'/>
-            <parameter type-id='type-id-2172'/>
+            <parameter type-id='type-id-2210' is-artificial='yes'/>
+            <parameter type-id='type-id-2173'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1057' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2209' is-artificial='yes'/>
-            <parameter type-id='type-id-2184'/>
+            <parameter type-id='type-id-2210' is-artificial='yes'/>
+            <parameter type-id='type-id-2185'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='operator=' mangled-name='_ZNSt7complexIfEaSEf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1090' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2209' is-artificial='yes'/>
+            <parameter type-id='type-id-2210' is-artificial='yes'/>
             <parameter type-id='type-id-374'/>
-            <return type-id='type-id-2208'/>
+            <return type-id='type-id-2209'/>
           </function-decl>
         </member-function>
         <member-function access='public' const='yes'>
           <function-decl name='imag' mangled-name='_ZNKSt7complexIfE4imagEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1078' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2179' is-artificial='yes'/>
-            <return type-id='type-id-2152'/>
+            <parameter type-id='type-id-2180' is-artificial='yes'/>
+            <return type-id='type-id-2153'/>
           </function-decl>
         </member-function>
         <member-function access='public' const='yes'>
           <function-decl name='real' mangled-name='_ZNKSt7complexIfE4realEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1072' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2179' is-artificial='yes'/>
-            <return type-id='type-id-2152'/>
+            <parameter type-id='type-id-2180' is-artificial='yes'/>
+            <return type-id='type-id-2153'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='complex&lt;double&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1186' column='1' id='type-id-2170'>
+      <class-decl name='complex&lt;double&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1186' column='1' id='type-id-2171'>
         <member-type access='private'>
-          <typedef-decl name='_ComplexT' type-id='type-id-2145' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1189' column='1' id='type-id-2174'/>
+          <typedef-decl name='_ComplexT' type-id='type-id-2146' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1189' column='1' id='type-id-2175'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_value' type-id='type-id-2174' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1328' column='1'/>
+          <var-decl name='_M_value' type-id='type-id-2175' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1328' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1191' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2207' is-artificial='yes'/>
-            <parameter type-id='type-id-2174'/>
+            <parameter type-id='type-id-2208' is-artificial='yes'/>
+            <parameter type-id='type-id-2175'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1193' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2207' is-artificial='yes'/>
+            <parameter type-id='type-id-2208' is-artificial='yes'/>
             <parameter type-id='type-id-254'/>
             <parameter type-id='type-id-254'/>
             <return type-id='type-id-5'/>
@@ -26293,55 +26299,55 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1203' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2207' is-artificial='yes'/>
-            <parameter type-id='type-id-2178'/>
+            <parameter type-id='type-id-2208' is-artificial='yes'/>
+            <parameter type-id='type-id-2179'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1206' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2207' is-artificial='yes'/>
-            <parameter type-id='type-id-2184'/>
+            <parameter type-id='type-id-2208' is-artificial='yes'/>
+            <parameter type-id='type-id-2185'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt7complexIdEaSEd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1239' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2207' is-artificial='yes'/>
+            <parameter type-id='type-id-2208' is-artificial='yes'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2206'/>
+            <return type-id='type-id-2207'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='imag' mangled-name='_ZNKSt7complexIdE4imagEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1227' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2173' is-artificial='yes'/>
-            <return type-id='type-id-2150'/>
+            <parameter type-id='type-id-2174' is-artificial='yes'/>
+            <return type-id='type-id-2151'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='real' mangled-name='_ZNKSt7complexIdE4realEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1221' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2173' is-artificial='yes'/>
-            <return type-id='type-id-2150'/>
+            <parameter type-id='type-id-2174' is-artificial='yes'/>
+            <return type-id='type-id-2151'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='complex&lt;long double&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1334' column='1' id='type-id-2182'>
+      <class-decl name='complex&lt;long double&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1334' column='1' id='type-id-2183'>
         <member-type access='private'>
-          <typedef-decl name='_ComplexT' type-id='type-id-2147' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1337' column='1' id='type-id-2186'/>
+          <typedef-decl name='_ComplexT' type-id='type-id-2148' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1337' column='1' id='type-id-2187'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_value' type-id='type-id-2186' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1478' column='1'/>
+          <var-decl name='_M_value' type-id='type-id-2187' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1478' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1339' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2211' is-artificial='yes'/>
-            <parameter type-id='type-id-2186'/>
+            <parameter type-id='type-id-2212' is-artificial='yes'/>
+            <parameter type-id='type-id-2187'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1341' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2211' is-artificial='yes'/>
+            <parameter type-id='type-id-2212' is-artificial='yes'/>
             <parameter type-id='type-id-375'/>
             <parameter type-id='type-id-375'/>
             <return type-id='type-id-5'/>
@@ -26349,362 +26355,362 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1352' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2211' is-artificial='yes'/>
-            <parameter type-id='type-id-2178'/>
+            <parameter type-id='type-id-2212' is-artificial='yes'/>
+            <parameter type-id='type-id-2179'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='complex' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1355' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2211' is-artificial='yes'/>
-            <parameter type-id='type-id-2172'/>
+            <parameter type-id='type-id-2212' is-artificial='yes'/>
+            <parameter type-id='type-id-2173'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt7complexIeEaSEe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1389' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2211' is-artificial='yes'/>
+            <parameter type-id='type-id-2212' is-artificial='yes'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2210'/>
+            <return type-id='type-id-2211'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='imag' mangled-name='_ZNKSt7complexIeE4imagEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1377' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2185' is-artificial='yes'/>
-            <return type-id='type-id-2154'/>
+            <parameter type-id='type-id-2186' is-artificial='yes'/>
+            <return type-id='type-id-2155'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='real' mangled-name='_ZNKSt7complexIeE4realEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='1371' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2185' is-artificial='yes'/>
-            <return type-id='type-id-2154'/>
+            <parameter type-id='type-id-2186' is-artificial='yes'/>
+            <return type-id='type-id-2155'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_stringbuf&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='60' column='1' id='type-id-2164'>
+      <class-decl name='basic_stringbuf&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='60' column='1' id='type-id-2165'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-728'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='64' column='1' id='type-id-2221'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='64' column='1' id='type-id-2222'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='69' column='1' id='type-id-2222'/>
+          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='69' column='1' id='type-id-2223'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='70' column='1' id='type-id-2223'/>
+          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='70' column='1' id='type-id-2224'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='71' column='1' id='type-id-2224'/>
+          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='71' column='1' id='type-id-2225'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='73' column='1' id='type-id-2225'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='73' column='1' id='type-id-2226'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='74' column='1' id='type-id-2226'/>
+          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='74' column='1' id='type-id-2227'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__size_type' type-id='type-id-740' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='75' column='1' id='type-id-2227'/>
+          <typedef-decl name='__size_type' type-id='type-id-740' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='75' column='1' id='type-id-2228'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='512'>
           <var-decl name='_M_mode' type-id='type-id-958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='79' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='576'>
-          <var-decl name='_M_string' type-id='type-id-2226' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='82' column='1'/>
+          <var-decl name='_M_string' type-id='type-id-2227' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='82' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2166' is-artificial='yes'/>
-            <return type-id='type-id-2226'/>
+            <parameter type-id='type-id-2167' is-artificial='yes'/>
+            <return type-id='type-id-2227'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2228'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2229'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_update_egptr' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE15_M_update_egptrEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE15_M_update_egptrEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='94' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_pbump' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8_M_pbumpEPcS4_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8_M_pbumpEPcS4_l@@GLIBCXX_3.4.16'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2229'/>
-            <parameter type-id='type-id-2229'/>
-            <parameter type-id='type-id-2224'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2230'/>
+            <parameter type-id='type-id-2230'/>
+            <parameter type-id='type-id-2225'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_sync' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcmm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='228' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcmm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2229'/>
-            <parameter type-id='type-id-2227'/>
-            <parameter type-id='type-id-2227'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2230'/>
+            <parameter type-id='type-id-2228'/>
+            <parameter type-id='type-id-2228'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_stringbuf_init' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE17_M_stringbuf_initESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE17_M_stringbuf_initESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strERKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2228'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2229'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2228'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2229'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='3'>
           <function-decl name='setbuf' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE6setbufEPcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE6setbufEPcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2229'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2230'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-2230'/>
+            <return type-id='type-id-2231'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='4'>
           <function-decl name='seekoff' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2224'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2225'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-2223'/>
+            <return type-id='type-id-2224'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='5'>
           <function-decl name='seekpos' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2223'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2224'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-2223'/>
+            <return type-id='type-id-2224'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='7'>
           <function-decl name='showmanyc' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9showmanycEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9showmanycEv@@GLIBCXX_3.4.6'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='9'>
           <function-decl name='underflow' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9underflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9underflowEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <return type-id='type-id-2222'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <return type-id='type-id-2223'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='11'>
           <function-decl name='pbackfail' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9pbackfailEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9pbackfailEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2222'/>
-            <return type-id='type-id-2222'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2223'/>
+            <return type-id='type-id-2223'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='13'>
           <function-decl name='overflow' mangled-name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8overflowEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8overflowEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2204' is-artificial='yes'/>
-            <parameter type-id='type-id-2222'/>
-            <return type-id='type-id-2222'/>
+            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2223'/>
+            <return type-id='type-id-2223'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_stringbuf&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='60' column='1' id='type-id-2167'>
+      <class-decl name='basic_stringbuf&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='60' column='1' id='type-id-2168'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-731'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='64' column='1' id='type-id-2231'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='64' column='1' id='type-id-2232'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='69' column='1' id='type-id-2232'/>
+          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='69' column='1' id='type-id-2233'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='70' column='1' id='type-id-2233'/>
+          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='70' column='1' id='type-id-2234'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='71' column='1' id='type-id-2234'/>
+          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='71' column='1' id='type-id-2235'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='73' column='1' id='type-id-2235'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='73' column='1' id='type-id-2236'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='74' column='1' id='type-id-2236'/>
+          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='74' column='1' id='type-id-2237'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__size_type' type-id='type-id-748' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='75' column='1' id='type-id-2237'/>
+          <typedef-decl name='__size_type' type-id='type-id-748' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='75' column='1' id='type-id-2238'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='512'>
           <var-decl name='_M_mode' type-id='type-id-958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='79' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='576'>
-          <var-decl name='_M_string' type-id='type-id-2236' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='82' column='1'/>
+          <var-decl name='_M_string' type-id='type-id-2237' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='82' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2169' is-artificial='yes'/>
-            <return type-id='type-id-2236'/>
+            <parameter type-id='type-id-2170' is-artificial='yes'/>
+            <return type-id='type-id-2237'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2238'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2239'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_update_egptr' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE15_M_update_egptrEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE15_M_update_egptrEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='94' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_pbump' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8_M_pbumpEPwS4_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8_M_pbumpEPwS4_l@@GLIBCXX_3.4.16'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2239'/>
-            <parameter type-id='type-id-2239'/>
-            <parameter type-id='type-id-2234'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2240'/>
+            <parameter type-id='type-id-2240'/>
+            <parameter type-id='type-id-2235'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_sync' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7_M_syncEPwmm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='228' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7_M_syncEPwmm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2239'/>
-            <parameter type-id='type-id-2237'/>
-            <parameter type-id='type-id-2237'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2240'/>
+            <parameter type-id='type-id-2238'/>
+            <parameter type-id='type-id-2238'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_stringbuf_init' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE17_M_stringbuf_initESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE17_M_stringbuf_initESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2238'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2239'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringbuf' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2238'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2239'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='3'>
           <function-decl name='setbuf' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE6setbufEPwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE6setbufEPwl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2239'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2240'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-2240'/>
+            <return type-id='type-id-2241'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='4'>
           <function-decl name='seekoff' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2234'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2235'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-2233'/>
+            <return type-id='type-id-2234'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='5'>
           <function-decl name='seekpos' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2233'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2234'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-2233'/>
+            <return type-id='type-id-2234'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='7'>
           <function-decl name='showmanyc' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9showmanycEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9showmanycEv@@GLIBCXX_3.4.6'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='9'>
           <function-decl name='underflow' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9underflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9underflowEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <return type-id='type-id-2232'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <return type-id='type-id-2233'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='11'>
           <function-decl name='pbackfail' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9pbackfailEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9pbackfailEj@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2232'/>
-            <return type-id='type-id-2232'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2233'/>
+            <return type-id='type-id-2233'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='13'>
           <function-decl name='overflow' mangled-name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8overflowEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/sstream.tcc' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8overflowEj@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2205' is-artificial='yes'/>
-            <parameter type-id='type-id-2232'/>
-            <return type-id='type-id-2232'/>
+            <parameter type-id='type-id-2206' is-artificial='yes'/>
+            <parameter type-id='type-id-2233'/>
+            <return type-id='type-id-2233'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='2816' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='373' column='1' id='type-id-2158'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1297'/>
+      <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='2816' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='373' column='1' id='type-id-2159'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1298'/>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='387' column='1' id='type-id-2241'/>
+          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='387' column='1' id='type-id-2242'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__stringbuf_type' type-id='type-id-2164' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='388' column='1' id='type-id-2242'/>
+          <typedef-decl name='__stringbuf_type' type-id='type-id-2165' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='388' column='1' id='type-id-2243'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_stringbuf' type-id='type-id-2242' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='392' column='1'/>
+          <var-decl name='_M_stringbuf' type-id='type-id-2243' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='392' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -26713,23 +26719,23 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='457' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2160' is-artificial='yes'/>
-            <return type-id='type-id-2241'/>
+            <parameter type-id='type-id-2161' is-artificial='yes'/>
+            <return type-id='type-id-2242'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='427' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2243'/>
+            <parameter type-id='type-id-2244'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -26738,7 +26744,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -26747,40 +26753,40 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2243'/>
+            <parameter type-id='type-id-2244'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2243'/>
+            <parameter type-id='type-id-2244'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='449' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2160' is-artificial='yes'/>
-            <return type-id='type-id-2244'/>
+            <parameter type-id='type-id-2161' is-artificial='yes'/>
+            <return type-id='type-id-2245'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strERKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='467' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
-            <parameter type-id='type-id-2243'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2244'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -26788,7 +26794,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -26796,7 +26802,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -26804,27 +26810,27 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2202' is-artificial='yes'/>
+            <parameter type-id='type-id-2203' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_ostringstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='2816' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='373' column='1' id='type-id-2161'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1298'/>
+      <class-decl name='basic_ostringstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='2816' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='373' column='1' id='type-id-2162'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1299'/>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='387' column='1' id='type-id-2245'/>
+          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='387' column='1' id='type-id-2246'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__stringbuf_type' type-id='type-id-2167' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='388' column='1' id='type-id-2246'/>
+          <typedef-decl name='__stringbuf_type' type-id='type-id-2168' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='388' column='1' id='type-id-2247'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_stringbuf' type-id='type-id-2246' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='392' column='1'/>
+          <var-decl name='_M_stringbuf' type-id='type-id-2247' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='392' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -26833,23 +26839,23 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='457' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2163' is-artificial='yes'/>
-            <return type-id='type-id-2245'/>
+            <parameter type-id='type-id-2164' is-artificial='yes'/>
+            <return type-id='type-id-2246'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='427' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2247'/>
+            <parameter type-id='type-id-2248'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -26858,7 +26864,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -26867,40 +26873,40 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2247'/>
+            <parameter type-id='type-id-2248'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2247'/>
+            <parameter type-id='type-id-2248'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='449' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2163' is-artificial='yes'/>
-            <return type-id='type-id-2248'/>
+            <parameter type-id='type-id-2164' is-artificial='yes'/>
+            <return type-id='type-id-2249'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='467' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
-            <parameter type-id='type-id-2247'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
+            <parameter type-id='type-id-2248'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -26908,7 +26914,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -26916,7 +26922,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -26924,7 +26930,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_ostringstream' mangled-name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2203' is-artificial='yes'/>
+            <parameter type-id='type-id-2204' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -26942,18 +26948,18 @@ 
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='__check_facet&lt;std::ctype&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2190'/>
-        <return type-id='type-id-2189'/>
+        <parameter type-id='type-id-2191'/>
+        <return type-id='type-id-2190'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' mangled-name='_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197'/>
         <parameter type-id='type-id-735'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwESaIwEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwESaIwEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200'/>
         <parameter type-id='type-id-743'/>
-        <return type-id='type-id-2199'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-895'/>
@@ -26961,145 +26967,145 @@ 
         <return type-id='type-id-895'/>
       </function-decl>
       <class-decl name='ctype&lt;wchar_t&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1177' column='1' is-declaration-only='yes' id='type-id-1001'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2155'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2156'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1182' column='1' id='type-id-2249'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1182' column='1' id='type-id-2250'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__wmask_type' type-id='type-id-649' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1183' column='1' id='type-id-2250'/>
+          <typedef-decl name='__wmask_type' type-id='type-id-649' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1183' column='1' id='type-id-2251'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_ctype' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1186' column='1'/>
+          <var-decl name='_M_c_locale_ctype' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1186' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='192'>
           <var-decl name='_M_narrow_ok' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1189' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='200'>
-          <var-decl name='_M_narrow' type-id='type-id-2251' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1190' column='1'/>
+          <var-decl name='_M_narrow' type-id='type-id-2252' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1190' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='1248'>
-          <var-decl name='_M_widen' type-id='type-id-2252' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1191' column='1'/>
+          <var-decl name='_M_widen' type-id='type-id-2253' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1191' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='9440'>
-          <var-decl name='_M_bit' type-id='type-id-2253' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1194' column='1'/>
+          <var-decl name='_M_bit' type-id='type-id-2254' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1194' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='9728'>
-          <var-decl name='_M_wmask' type-id='type-id-2254' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1195' column='1'/>
+          <var-decl name='_M_wmask' type-id='type-id-2255' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1195' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt5ctypeIwE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='50' column='1' elf-symbol-id='_ZNSt5ctypeIwE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt5ctypeIwE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='50' column='1' elf-symbol-id='_ZNSt5ctypeIwE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='ctype' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype' mangled-name='_ZNSt5ctypeIwEC2Em' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='104' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIwEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype' mangled-name='_ZNSt5ctypeIwEC2EP15__locale_structm' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIwEC2EP15__locale_structm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_convert_to_wmask' mangled-name='_ZNKSt5ctypeIwE19_M_convert_to_wmaskEt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='60' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE19_M_convert_to_wmaskEt@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <return type-id='type-id-2250'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <return type-id='type-id-2251'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_ctype' mangled-name='_ZNSt5ctypeIwE19_M_initialize_ctypeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='272' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIwE19_M_initialize_ctypeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype' mangled-name='_ZNSt5ctypeIwED0Ev' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype' mangled-name='_ZNSt5ctypeIwED2Ev' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2099' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_is' mangled-name='_ZNKSt5ctypeIwE5do_isEtw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1245' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2249'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2250'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_is' mangled-name='_ZNKSt5ctypeIwE5do_isEtw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE5do_isEtw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
             <parameter type-id='type-id-377'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_is' mangled-name='_ZNKSt5ctypeIwE5do_isEPKwS2_Pt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1264' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2255'/>
-            <parameter type-id='type-id-2255'/>
-            <parameter type-id='type-id-2218'/>
-            <return type-id='type-id-2255'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2256'/>
+            <parameter type-id='type-id-2256'/>
+            <parameter type-id='type-id-2219'/>
+            <return type-id='type-id-2256'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_is' mangled-name='_ZNKSt5ctypeIwE5do_isEPKwS2_Pt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE5do_isEPKwS2_Pt@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
-            <parameter type-id='type-id-2218'/>
+            <parameter type-id='type-id-2219'/>
             <return type-id='type-id-342'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_scan_is' mangled-name='_ZNKSt5ctypeIwE10do_scan_isEtPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1282' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2255'/>
-            <parameter type-id='type-id-2255'/>
-            <return type-id='type-id-2255'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2256'/>
+            <parameter type-id='type-id-2256'/>
+            <return type-id='type-id-2256'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_scan_is' mangled-name='_ZNKSt5ctypeIwE10do_scan_isEtPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE10do_scan_isEtPKwS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
             <return type-id='type-id-342'/>
@@ -27107,47 +27113,47 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_scan_not' mangled-name='_ZNKSt5ctypeIwE11do_scan_notEtPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1300' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2255'/>
-            <parameter type-id='type-id-2255'/>
-            <return type-id='type-id-2255'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2256'/>
+            <parameter type-id='type-id-2256'/>
+            <return type-id='type-id-2256'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_scan_not' mangled-name='_ZNKSt5ctypeIwE11do_scan_notEtPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE11do_scan_notEtPKwS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2255'/>
-            <parameter type-id='type-id-2255'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2256'/>
+            <parameter type-id='type-id-2256'/>
             <return type-id='type-id-342'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIwE10do_toupperEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1317' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2249'/>
-            <return type-id='type-id-2249'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2250'/>
+            <return type-id='type-id-2250'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIwE10do_toupperEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE10do_toupperEw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-377'/>
             <return type-id='type-id-377'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIwE10do_toupperEPwPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1334' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2257'/>
             <parameter type-id='type-id-2256'/>
-            <parameter type-id='type-id-2255'/>
-            <return type-id='type-id-2255'/>
+            <return type-id='type-id-2256'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIwE10do_toupperEPwPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE10do_toupperEPwPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-342'/>
             <return type-id='type-id-342'/>
@@ -27155,29 +27161,29 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIwE10do_tolowerEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1350' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2249'/>
-            <return type-id='type-id-2249'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2250'/>
+            <return type-id='type-id-2250'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIwE10do_tolowerEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE10do_tolowerEw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-377'/>
             <return type-id='type-id-377'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIwE10do_tolowerEPwPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1367' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2257'/>
             <parameter type-id='type-id-2256'/>
-            <parameter type-id='type-id-2255'/>
-            <return type-id='type-id-2255'/>
+            <return type-id='type-id-2256'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIwE10do_tolowerEPwPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='124' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE10do_tolowerEPwPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-342'/>
             <return type-id='type-id-342'/>
@@ -27185,30 +27191,30 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_widen' mangled-name='_ZNKSt5ctypeIwE8do_widenEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1387' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2249'/>
+            <return type-id='type-id-2250'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_widen' mangled-name='_ZNKSt5ctypeIwE8do_widenEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE8do_widenEc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-377'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='11'>
           <function-decl name='do_widen' mangled-name='_ZNKSt5ctypeIwE8do_widenEPKcS2_Pw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1409' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2256'/>
+            <parameter type-id='type-id-2257'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='11'>
           <function-decl name='do_widen' mangled-name='_ZNKSt5ctypeIwE8do_widenEPKcS2_Pw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='208' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE8do_widenEPKcS2_Pw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-334'/>
@@ -27217,15 +27223,15 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='12'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt5ctypeIwE9do_narrowEwc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1432' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2249'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2250'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='12'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt5ctypeIwE9do_narrowEwc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE9do_narrowEwc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
@@ -27233,17 +27239,17 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='13'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1458' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
-            <parameter type-id='type-id-2255'/>
-            <parameter type-id='type-id-2255'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
+            <parameter type-id='type-id-2256'/>
+            <parameter type-id='type-id-2256'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-94'/>
-            <return type-id='type-id-2255'/>
+            <return type-id='type-id-2256'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='13'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2190' is-artificial='yes'/>
+            <parameter type-id='type-id-2191' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-188'/>
@@ -27284,128 +27290,128 @@ 
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;double, char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIdcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIdcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
-        <parameter type-id='type-id-2206' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
+        <parameter type-id='type-id-2207' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;float, char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIfcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIfcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
-        <parameter type-id='type-id-2208' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
+        <parameter type-id='type-id-2209' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;long double, char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIecSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIecSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
-        <parameter type-id='type-id-2210' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
+        <parameter type-id='type-id-2211' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;double, wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIdwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIdwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
-        <parameter type-id='type-id-2206' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
+        <parameter type-id='type-id-2207' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;float, wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIfwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIfwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
-        <parameter type-id='type-id-2208' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
+        <parameter type-id='type-id-2209' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;long double, wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIewSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIewSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
-        <parameter type-id='type-id-2210' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
+        <parameter type-id='type-id-2211' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='486' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;double, char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIdcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIdcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <parameter type-id='type-id-2172' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <parameter type-id='type-id-2173' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;float, char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIfcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIfcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <parameter type-id='type-id-2178' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <parameter type-id='type-id-2179' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;long double, char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIecSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIecSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <parameter type-id='type-id-2184' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <parameter type-id='type-id-2185' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;double, wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIdwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIdwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <parameter type-id='type-id-2172' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <parameter type-id='type-id-2173' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;float, wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIfwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIfwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <parameter type-id='type-id-2178' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <parameter type-id='type-id-2179' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;long double, wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIewSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIewSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <parameter type-id='type-id-2184' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <parameter type-id='type-id-2185' name='__x' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/complex' line='519' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
-      <class-decl name='basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='56' column='1' is-declaration-only='yes' id='type-id-1297'>
+      <class-decl name='basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='56' column='1' is-declaration-only='yes' id='type-id-1298'>
         <base-class access='public' layout-offset-in-bits='192' is-virtual='yes' type-id='type-id-706'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='60' column='1' id='type-id-2257'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='60' column='1' id='type-id-2258'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='61' column='1' id='type-id-2258'/>
+          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='61' column='1' id='type-id-2259'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='62' column='1' id='type-id-2259'/>
+          <typedef-decl name='pos_type' type-id='type-id-885' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='62' column='1' id='type-id-2260'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='63' column='1' id='type-id-2260'/>
+          <typedef-decl name='off_type' type-id='type-id-887' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='63' column='1' id='type-id-2261'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='67' column='1' id='type-id-2261'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='67' column='1' id='type-id-2262'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ios_type' type-id='type-id-706' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='68' column='1' id='type-id-2262'/>
+          <typedef-decl name='__ios_type' type-id='type-id-706' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='68' column='1' id='type-id-2263'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ostream_type' type-id='type-id-1297' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='69' column='1' id='type-id-2197'/>
+          <typedef-decl name='__ostream_type' type-id='type-id-1298' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='69' column='1' id='type-id-2198'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__num_put_type' type-id='type-id-988' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='71' column='1' id='type-id-2263'/>
+          <typedef-decl name='__num_put_type' type-id='type-id-988' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='71' column='1' id='type-id-2264'/>
         </member-type>
         <member-type access='private'>
-          <class-decl name='sentry' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='398' column='1' id='type-id-2264'>
+          <class-decl name='sentry' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='398' column='1' id='type-id-2265'>
             <data-member access='private' layout-offset-in-bits='0'>
               <var-decl name='_M_ok' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='401' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='64'>
-              <var-decl name='_M_os' type-id='type-id-2196' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='402' column='1'/>
+              <var-decl name='_M_os' type-id='type-id-2197' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='402' column='1'/>
             </data-member>
             <member-function access='private' constructor='yes'>
               <function-decl name='sentry' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2265' is-artificial='yes'/>
-                <parameter type-id='type-id-2196'/>
+                <parameter type-id='type-id-2266' is-artificial='yes'/>
+                <parameter type-id='type-id-2197'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~sentry' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='426' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2265' is-artificial='yes'/>
+                <parameter type-id='type-id-2266' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' const='yes'>
               <function-decl name='operator bool' mangled-name='_ZNKSo6sentrycvbEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSo6sentrycvbEv@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2266' is-artificial='yes'/>
+                <parameter type-id='type-id-2267' is-artificial='yes'/>
                 <return type-id='type-id-40'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='sentry' mangled-name='_ZNSo6sentryC2ERSo' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo6sentryC2ERSo@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2265' is-artificial='yes'/>
-                <parameter type-id='type-id-2196'/>
+                <parameter type-id='type-id-2266' is-artificial='yes'/>
+                <parameter type-id='type-id-2197'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~sentry' mangled-name='_ZNSo6sentryD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo6sentryD2Ev@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2265' is-artificial='yes'/>
+                <parameter type-id='type-id-2266' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
@@ -27424,21 +27430,21 @@ 
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEe@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEd@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEf@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-374'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -27446,7 +27452,7 @@ 
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2267'/>
+            <parameter type-id='type-id-2268'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -27455,7 +27461,7 @@ 
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2267'/>
+            <parameter type-id='type-id-2268'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -27464,35 +27470,35 @@ 
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2267'/>
+            <parameter type-id='type-id-2268'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEPFRSoS_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEPFRSoS_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-2268'/>
-            <return type-id='type-id-2198'/>
+            <parameter type-id='type-id-2269'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-2269'/>
-            <return type-id='type-id-2198'/>
+            <parameter type-id='type-id-2270'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEPFRSt8ios_baseS0_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEPFRSt8ios_baseS0_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-1052'/>
-            <return type-id='type-id-2198'/>
+            <parameter type-id='type-id-1053'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_write' mangled-name='_ZNSo8_M_writeEPKcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo8_M_writeEPKcl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-2270'/>
+            <parameter type-id='type-id-2271'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -27500,28 +27506,28 @@ 
         <member-function access='private'>
           <function-decl name='flush' mangled-name='_ZNSo5flushEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='212' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo5flushEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tellp' mangled-name='_ZNSo5tellpEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo5tellpEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <return type-id='type-id-2259'/>
+            <return type-id='type-id-2260'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='seekp' mangled-name='_ZNSo5seekpESt4fposI11__mbstate_tE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo5seekpESt4fposI11__mbstate_tE@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-2259'/>
-            <return type-id='type-id-2196'/>
+            <parameter type-id='type-id-2260'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='seekp' mangled-name='_ZNSo5seekpElSt12_Ios_Seekdir' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo5seekpElSt12_Ios_Seekdir@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-2260'/>
+            <parameter type-id='type-id-2261'/>
             <parameter type-id='type-id-964'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
@@ -27545,147 +27551,147 @@ 
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='put' mangled-name='_ZNSo3putEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo3putEc@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-2257'/>
-            <return type-id='type-id-2196'/>
+            <parameter type-id='type-id-2258'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEPSt15basic_streambufIcSt11char_traitsIcEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEPSt15basic_streambufIcSt11char_traitsIcEE@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
-            <parameter type-id='type-id-2267'/>
-            <return type-id='type-id-2196'/>
+            <parameter type-id='type-id-2268'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long int&gt;' mangled-name='_ZNSo9_M_insertIlEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertIlEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEi@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEs@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-623'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long unsigned int&gt;' mangled-name='_ZNSo9_M_insertImEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertImEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEj@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-39'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='179' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEt@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-627'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEm@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;bool&gt;' mangled-name='_ZNSo9_M_insertIbEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertIbEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEb@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long long int&gt;' mangled-name='_ZNSo9_M_insertIxEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertIxEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEx@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long long unsigned int&gt;' mangled-name='_ZNSo9_M_insertIyEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertIyEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEy@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;double&gt;' mangled-name='_ZNSo9_M_insertIdEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertIdEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long double&gt;' mangled-name='_ZNSo9_M_insertIeEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertIeEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;const void*&gt;' mangled-name='_ZNSo9_M_insertIPKvEERSoT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSo9_M_insertIPKvEERSoT_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2196'/>
+            <return type-id='type-id-2197'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSolsEPKv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-991' is-artificial='yes'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2198'/>
+            <return type-id='type-id-2199'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
@@ -27721,70 +27727,70 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_ostream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='56' column='1' is-declaration-only='yes' id='type-id-1298'>
+      <class-decl name='basic_ostream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='56' column='1' is-declaration-only='yes' id='type-id-1299'>
         <base-class access='public' layout-offset-in-bits='192' is-virtual='yes' type-id='type-id-709'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='60' column='1' id='type-id-2271'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='60' column='1' id='type-id-2272'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='61' column='1' id='type-id-2272'/>
+          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='61' column='1' id='type-id-2273'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='62' column='1' id='type-id-2273'/>
+          <typedef-decl name='pos_type' type-id='type-id-892' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='62' column='1' id='type-id-2274'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='63' column='1' id='type-id-2274'/>
+          <typedef-decl name='off_type' type-id='type-id-891' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='63' column='1' id='type-id-2275'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='67' column='1' id='type-id-2275'/>
+          <typedef-decl name='__streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='67' column='1' id='type-id-2276'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ios_type' type-id='type-id-709' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='68' column='1' id='type-id-2276'/>
+          <typedef-decl name='__ios_type' type-id='type-id-709' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='68' column='1' id='type-id-2277'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__ostream_type' type-id='type-id-1298' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='69' column='1' id='type-id-2200'/>
+          <typedef-decl name='__ostream_type' type-id='type-id-1299' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='69' column='1' id='type-id-2201'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__num_put_type' type-id='type-id-1003' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='71' column='1' id='type-id-2277'/>
+          <typedef-decl name='__num_put_type' type-id='type-id-1003' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='71' column='1' id='type-id-2278'/>
         </member-type>
         <member-type access='private'>
-          <class-decl name='sentry' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='398' column='1' id='type-id-2278'>
+          <class-decl name='sentry' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='398' column='1' id='type-id-2279'>
             <data-member access='private' layout-offset-in-bits='0'>
               <var-decl name='_M_ok' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='401' column='1'/>
             </data-member>
             <data-member access='private' layout-offset-in-bits='64'>
-              <var-decl name='_M_os' type-id='type-id-2199' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='402' column='1'/>
+              <var-decl name='_M_os' type-id='type-id-2200' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='402' column='1'/>
             </data-member>
             <member-function access='private' constructor='yes'>
               <function-decl name='sentry' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2279' is-artificial='yes'/>
-                <parameter type-id='type-id-2199'/>
+                <parameter type-id='type-id-2280' is-artificial='yes'/>
+                <parameter type-id='type-id-2200'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~sentry' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='426' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2279' is-artificial='yes'/>
+                <parameter type-id='type-id-2280' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' const='yes'>
               <function-decl name='operator bool' mangled-name='_ZNKSt13basic_ostreamIwSt11char_traitsIwEE6sentrycvbEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt13basic_ostreamIwSt11char_traitsIwEE6sentrycvbEv@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2280' is-artificial='yes'/>
+                <parameter type-id='type-id-2281' is-artificial='yes'/>
                 <return type-id='type-id-40'/>
               </function-decl>
             </member-function>
             <member-function access='private' constructor='yes'>
               <function-decl name='sentry' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2279' is-artificial='yes'/>
-                <parameter type-id='type-id-2199'/>
+                <parameter type-id='type-id-2280' is-artificial='yes'/>
+                <parameter type-id='type-id-2200'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='private' destructor='yes'>
               <function-decl name='~sentry' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-2279' is-artificial='yes'/>
+                <parameter type-id='type-id-2280' is-artificial='yes'/>
                 <parameter type-id='type-id-6' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
@@ -27803,21 +27809,21 @@ 
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEe@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEd@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEf@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-374'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
@@ -27825,7 +27831,7 @@ 
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2281'/>
+            <parameter type-id='type-id-2282'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -27834,7 +27840,7 @@ 
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2281'/>
+            <parameter type-id='type-id-2282'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -27843,35 +27849,35 @@ 
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2281'/>
+            <parameter type-id='type-id-2282'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRS2_S3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRS2_S3_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-2282'/>
-            <return type-id='type-id-2201'/>
+            <parameter type-id='type-id-2283'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt9basic_iosIwS1_ES5_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt9basic_iosIwS1_ES5_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-2283'/>
-            <return type-id='type-id-2201'/>
+            <parameter type-id='type-id-2284'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt8ios_baseS4_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt8ios_baseS4_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-1052'/>
-            <return type-id='type-id-2201'/>
+            <parameter type-id='type-id-1053'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_write' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE8_M_writeEPKwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE8_M_writeEPKwl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-2284'/>
+            <parameter type-id='type-id-2285'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -27879,28 +27885,28 @@ 
         <member-function access='private'>
           <function-decl name='flush' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='212' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='tellp' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5tellpEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5tellpEv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <return type-id='type-id-2273'/>
+            <return type-id='type-id-2274'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='seekp' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpESt4fposI11__mbstate_tE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpESt4fposI11__mbstate_tE@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-2273'/>
-            <return type-id='type-id-2199'/>
+            <parameter type-id='type-id-2274'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='seekp' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpElSt12_Ios_Seekdir' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpElSt12_Ios_Seekdir@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-2274'/>
+            <parameter type-id='type-id-2275'/>
             <parameter type-id='type-id-964'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
@@ -27924,147 +27930,147 @@ 
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='put' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE3putEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE3putEw@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-2271'/>
-            <return type-id='type-id-2199'/>
+            <parameter type-id='type-id-2272'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPSt15basic_streambufIwS1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPSt15basic_streambufIwS1_E@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
-            <parameter type-id='type-id-2281'/>
-            <return type-id='type-id-2199'/>
+            <parameter type-id='type-id-2282'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long int&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIlEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIlEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEi@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEs@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-623'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEl@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long unsigned int&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertImEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertImEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEj@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-39'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='179' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEt@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-627'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEm@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;bool&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIbEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIbEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEb@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long long int&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIxEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIxEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEx@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long long unsigned int&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIyEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIyEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEy@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;double&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIdEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIdEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;long double&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIeEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIeEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_insert&lt;const void*&gt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIPKvEERS2_T_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIPKvEERS2_T_@@GLIBCXX_3.4.9'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2199'/>
+            <return type-id='type-id-2200'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator&lt;&lt;' mangled-name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPKv@@GLIBCXX_3.4'>
             <parameter type-id='type-id-1006' is-artificial='yes'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2201'/>
+            <return type-id='type-id-2202'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
@@ -28101,19 +28107,19 @@ 
         </member-function>
       </class-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200'/>
         <parameter type-id='type-id-377'/>
-        <return type-id='type-id-2199'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='474' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_c@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200'/>
         <parameter type-id='type-id-188'/>
-        <return type-id='type-id-2199'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197'/>
         <parameter type-id='type-id-188'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
@@ -28128,330 +28134,330 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/concept-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-2285' size-in-bits='64' id='type-id-2286'/>
-    <pointer-type-def type-id='type-id-2287' size-in-bits='64' id='type-id-2288'/>
-    <pointer-type-def type-id='type-id-2289' size-in-bits='64' id='type-id-2290'/>
-    <pointer-type-def type-id='type-id-2291' size-in-bits='64' id='type-id-2292'/>
-    <pointer-type-def type-id='type-id-2293' size-in-bits='64' id='type-id-2294'/>
-    <pointer-type-def type-id='type-id-2295' size-in-bits='64' id='type-id-2296'/>
-    <pointer-type-def type-id='type-id-2297' size-in-bits='64' id='type-id-2298'/>
-    <pointer-type-def type-id='type-id-2299' size-in-bits='64' id='type-id-2300'/>
-    <pointer-type-def type-id='type-id-2301' size-in-bits='64' id='type-id-2302'/>
-    <pointer-type-def type-id='type-id-2303' size-in-bits='64' id='type-id-2304'/>
-    <reference-type-def kind='lvalue' type-id='type-id-862' size-in-bits='64' id='type-id-1110'/>
-    <pointer-type-def type-id='type-id-862' size-in-bits='64' id='type-id-1108'/>
-    <reference-type-def kind='lvalue' type-id='type-id-877' size-in-bits='64' id='type-id-1120'/>
-    <pointer-type-def type-id='type-id-877' size-in-bits='64' id='type-id-1118'/>
-    <qualified-type-def type-id='type-id-862' const='yes' id='type-id-2305'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2305' size-in-bits='64' id='type-id-2306'/>
-    <pointer-type-def type-id='type-id-2305' size-in-bits='64' id='type-id-1111'/>
-    <qualified-type-def type-id='type-id-1102' const='yes' id='type-id-2307'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2307' size-in-bits='64' id='type-id-1109'/>
-    <qualified-type-def type-id='type-id-877' const='yes' id='type-id-2308'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2308' size-in-bits='64' id='type-id-2309'/>
-    <pointer-type-def type-id='type-id-2308' size-in-bits='64' id='type-id-1121'/>
-    <qualified-type-def type-id='type-id-1112' const='yes' id='type-id-2310'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2310' size-in-bits='64' id='type-id-1119'/>
-    <reference-type-def kind='lvalue' type-id='type-id-279' size-in-bits='64' id='type-id-1827'/>
-    <qualified-type-def type-id='type-id-2311' const='yes' id='type-id-2312'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2312' size-in-bits='64' id='type-id-2313'/>
-    <pointer-type-def type-id='type-id-2312' size-in-bits='64' id='type-id-2314'/>
-    <qualified-type-def type-id='type-id-2315' const='yes' id='type-id-2316'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2316' size-in-bits='64' id='type-id-2317'/>
-    <pointer-type-def type-id='type-id-2316' size-in-bits='64' id='type-id-2318'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2311' size-in-bits='64' id='type-id-2319'/>
-    <pointer-type-def type-id='type-id-2311' size-in-bits='64' id='type-id-2320'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2321' size-in-bits='64' id='type-id-2322'/>
-    <pointer-type-def type-id='type-id-2323' size-in-bits='64' id='type-id-2324'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2315' size-in-bits='64' id='type-id-2325'/>
-    <pointer-type-def type-id='type-id-2315' size-in-bits='64' id='type-id-2326'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2327' size-in-bits='64' id='type-id-2328'/>
-    <pointer-type-def type-id='type-id-2329' size-in-bits='64' id='type-id-2330'/>
+    <pointer-type-def type-id='type-id-2286' size-in-bits='64' id='type-id-2287'/>
+    <pointer-type-def type-id='type-id-2288' size-in-bits='64' id='type-id-2289'/>
+    <pointer-type-def type-id='type-id-2290' size-in-bits='64' id='type-id-2291'/>
+    <pointer-type-def type-id='type-id-2292' size-in-bits='64' id='type-id-2293'/>
+    <pointer-type-def type-id='type-id-2294' size-in-bits='64' id='type-id-2295'/>
+    <pointer-type-def type-id='type-id-2296' size-in-bits='64' id='type-id-2297'/>
+    <pointer-type-def type-id='type-id-2298' size-in-bits='64' id='type-id-2299'/>
+    <pointer-type-def type-id='type-id-2300' size-in-bits='64' id='type-id-2301'/>
+    <pointer-type-def type-id='type-id-2302' size-in-bits='64' id='type-id-2303'/>
+    <pointer-type-def type-id='type-id-2304' size-in-bits='64' id='type-id-2305'/>
+    <reference-type-def kind='lvalue' type-id='type-id-862' size-in-bits='64' id='type-id-1111'/>
+    <pointer-type-def type-id='type-id-862' size-in-bits='64' id='type-id-1109'/>
+    <reference-type-def kind='lvalue' type-id='type-id-877' size-in-bits='64' id='type-id-1121'/>
+    <pointer-type-def type-id='type-id-877' size-in-bits='64' id='type-id-1119'/>
+    <qualified-type-def type-id='type-id-862' const='yes' id='type-id-2306'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2306' size-in-bits='64' id='type-id-2307'/>
+    <pointer-type-def type-id='type-id-2306' size-in-bits='64' id='type-id-1112'/>
+    <qualified-type-def type-id='type-id-1103' const='yes' id='type-id-2308'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2308' size-in-bits='64' id='type-id-1110'/>
+    <qualified-type-def type-id='type-id-877' const='yes' id='type-id-2309'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2309' size-in-bits='64' id='type-id-2310'/>
+    <pointer-type-def type-id='type-id-2309' size-in-bits='64' id='type-id-1122'/>
+    <qualified-type-def type-id='type-id-1113' const='yes' id='type-id-2311'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2311' size-in-bits='64' id='type-id-1120'/>
+    <reference-type-def kind='lvalue' type-id='type-id-279' size-in-bits='64' id='type-id-1828'/>
+    <qualified-type-def type-id='type-id-2312' const='yes' id='type-id-2313'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2313' size-in-bits='64' id='type-id-2314'/>
+    <pointer-type-def type-id='type-id-2313' size-in-bits='64' id='type-id-2315'/>
+    <qualified-type-def type-id='type-id-2316' const='yes' id='type-id-2317'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2317' size-in-bits='64' id='type-id-2318'/>
+    <pointer-type-def type-id='type-id-2317' size-in-bits='64' id='type-id-2319'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2312' size-in-bits='64' id='type-id-2320'/>
+    <pointer-type-def type-id='type-id-2312' size-in-bits='64' id='type-id-2321'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2322' size-in-bits='64' id='type-id-2323'/>
+    <pointer-type-def type-id='type-id-2324' size-in-bits='64' id='type-id-2325'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2316' size-in-bits='64' id='type-id-2326'/>
+    <pointer-type-def type-id='type-id-2316' size-in-bits='64' id='type-id-2327'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2328' size-in-bits='64' id='type-id-2329'/>
+    <pointer-type-def type-id='type-id-2330' size-in-bits='64' id='type-id-2331'/>
     <namespace-decl name='std'>
-      <class-decl name='iterator&lt;std::output_iterator_tag, void, void, void, void&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='119' column='1' id='type-id-2331'/>
-      <class-decl name='iterator_traits&lt;const char*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='187' column='1' id='type-id-2332'>
+      <class-decl name='iterator&lt;std::output_iterator_tag, void, void, void, void&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='119' column='1' id='type-id-2332'/>
+      <class-decl name='iterator_traits&lt;const char*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='187' column='1' id='type-id-2333'>
         <member-type access='public'>
-          <typedef-decl name='iterator_category' type-id='type-id-348' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='189' column='1' id='type-id-2333'/>
+          <typedef-decl name='iterator_category' type-id='type-id-348' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='189' column='1' id='type-id-2334'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='191' column='1' id='type-id-1103'/>
+          <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='191' column='1' id='type-id-1104'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='192' column='1' id='type-id-1107'/>
+          <typedef-decl name='pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='192' column='1' id='type-id-1108'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='193' column='1' id='type-id-1105'/>
+          <typedef-decl name='reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='193' column='1' id='type-id-1106'/>
         </member-type>
       </class-decl>
-      <class-decl name='iterator_traits&lt;const wchar_t*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='187' column='1' id='type-id-2334'>
+      <class-decl name='iterator_traits&lt;const wchar_t*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='187' column='1' id='type-id-2335'>
         <member-type access='public'>
-          <typedef-decl name='iterator_category' type-id='type-id-348' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='189' column='1' id='type-id-2335'/>
+          <typedef-decl name='iterator_category' type-id='type-id-348' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='189' column='1' id='type-id-2336'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='191' column='1' id='type-id-1113'/>
+          <typedef-decl name='difference_type' type-id='type-id-350' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='191' column='1' id='type-id-1114'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='192' column='1' id='type-id-1117'/>
+          <typedef-decl name='pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='192' column='1' id='type-id-1118'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='193' column='1' id='type-id-1115'/>
+          <typedef-decl name='reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='193' column='1' id='type-id-1116'/>
         </member-type>
       </class-decl>
-      <class-decl name='ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='218' column='1' id='type-id-2311'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2331'/>
+      <class-decl name='ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='218' column='1' id='type-id-2312'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2332'/>
         <member-type access='private'>
-          <typedef-decl name='streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='227' column='1' id='type-id-2323'/>
+          <typedef-decl name='streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='227' column='1' id='type-id-2324'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='ostream_type' type-id='type-id-1297' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='228' column='1' id='type-id-2321'/>
+          <typedef-decl name='ostream_type' type-id='type-id-1298' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='228' column='1' id='type-id-2322'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sbuf' type-id='type-id-2324' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='238' column='1'/>
+          <var-decl name='_M_sbuf' type-id='type-id-2325' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='238' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
           <var-decl name='_M_failed' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='239' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='ostreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2320' is-artificial='yes'/>
-            <parameter type-id='type-id-2322'/>
+            <parameter type-id='type-id-2321' is-artificial='yes'/>
+            <parameter type-id='type-id-2323'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='ostreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2320' is-artificial='yes'/>
-            <parameter type-id='type-id-2324'/>
+            <parameter type-id='type-id-2321' is-artificial='yes'/>
+            <parameter type-id='type-id-2325'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZNSt19ostreambuf_iteratorIcSt11char_traitsIcEEppEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2320' is-artificial='yes'/>
+            <parameter type-id='type-id-2321' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
-            <return type-id='type-id-2319'/>
+            <return type-id='type-id-2320'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZNSt19ostreambuf_iteratorIcSt11char_traitsIcEEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='272' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2320' is-artificial='yes'/>
-            <return type-id='type-id-2319'/>
+            <parameter type-id='type-id-2321' is-artificial='yes'/>
+            <return type-id='type-id-2320'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator*' mangled-name='_ZNSt19ostreambuf_iteratorIcSt11char_traitsIcEEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2320' is-artificial='yes'/>
-            <return type-id='type-id-2319'/>
+            <parameter type-id='type-id-2321' is-artificial='yes'/>
+            <return type-id='type-id-2320'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt19ostreambuf_iteratorIcSt11char_traitsIcEEaSEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='252' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2320' is-artificial='yes'/>
+            <parameter type-id='type-id-2321' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2319'/>
+            <return type-id='type-id-2320'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_put' mangled-name='_ZNSt19ostreambuf_iteratorIcSt11char_traitsIcEE6_M_putEPKcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='281' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2320' is-artificial='yes'/>
+            <parameter type-id='type-id-2321' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-2319'/>
+            <return type-id='type-id-2320'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='failed' mangled-name='_ZNKSt19ostreambuf_iteratorIcSt11char_traitsIcEE6failedEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2314' is-artificial='yes'/>
+            <parameter type-id='type-id-2315' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='218' column='1' id='type-id-2315'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2331'/>
+      <class-decl name='ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='218' column='1' id='type-id-2316'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2332'/>
         <member-type access='private'>
-          <typedef-decl name='streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='227' column='1' id='type-id-2329'/>
+          <typedef-decl name='streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='227' column='1' id='type-id-2330'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='ostream_type' type-id='type-id-1298' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='228' column='1' id='type-id-2327'/>
+          <typedef-decl name='ostream_type' type-id='type-id-1299' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='228' column='1' id='type-id-2328'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sbuf' type-id='type-id-2330' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='238' column='1'/>
+          <var-decl name='_M_sbuf' type-id='type-id-2331' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='238' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
           <var-decl name='_M_failed' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='239' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='ostreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2326' is-artificial='yes'/>
-            <parameter type-id='type-id-2328'/>
+            <parameter type-id='type-id-2327' is-artificial='yes'/>
+            <parameter type-id='type-id-2329'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='ostreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2326' is-artificial='yes'/>
-            <parameter type-id='type-id-2330'/>
+            <parameter type-id='type-id-2327' is-artificial='yes'/>
+            <parameter type-id='type-id-2331'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZNSt19ostreambuf_iteratorIwSt11char_traitsIwEEppEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2326' is-artificial='yes'/>
+            <parameter type-id='type-id-2327' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
-            <return type-id='type-id-2325'/>
+            <return type-id='type-id-2326'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZNSt19ostreambuf_iteratorIwSt11char_traitsIwEEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='272' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2326' is-artificial='yes'/>
-            <return type-id='type-id-2325'/>
+            <parameter type-id='type-id-2327' is-artificial='yes'/>
+            <return type-id='type-id-2326'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator*' mangled-name='_ZNSt19ostreambuf_iteratorIwSt11char_traitsIwEEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2326' is-artificial='yes'/>
-            <return type-id='type-id-2325'/>
+            <parameter type-id='type-id-2327' is-artificial='yes'/>
+            <return type-id='type-id-2326'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='failed' mangled-name='_ZNKSt19ostreambuf_iteratorIwSt11char_traitsIwEE6failedEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2318' is-artificial='yes'/>
+            <parameter type-id='type-id-2319' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator=' mangled-name='_ZNSt19ostreambuf_iteratorIwSt11char_traitsIwEEaSEw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='252' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2326' is-artificial='yes'/>
+            <parameter type-id='type-id-2327' is-artificial='yes'/>
             <parameter type-id='type-id-377'/>
-            <return type-id='type-id-2325'/>
+            <return type-id='type-id-2326'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_put' mangled-name='_ZNSt19ostreambuf_iteratorIwSt11char_traitsIwEE6_M_putEPKwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='281' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2326' is-artificial='yes'/>
+            <parameter type-id='type-id-2327' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-897'/>
-            <return type-id='type-id-2325'/>
+            <return type-id='type-id-2326'/>
           </function-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2285'>
+      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2286'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-265' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptINS_17__normal_iteratorIPcSsEEE19__const_constraintsERKS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2286' is-artificial='yes'/>
-            <parameter type-id='type-id-1807'/>
+            <parameter type-id='type-id-2287' is-artificial='yes'/>
+            <parameter type-id='type-id-1808'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2287'>
+      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2288'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-862' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptINS_17__normal_iteratorIPKcSsEEE19__const_constraintsERKS4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2288' is-artificial='yes'/>
-            <parameter type-id='type-id-2306'/>
+            <parameter type-id='type-id-2289' is-artificial='yes'/>
+            <parameter type-id='type-id-2307'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;const wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2289'>
+      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;const wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2290'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-877' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptINS_17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEEE19__const_constraintsERKS8_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2290' is-artificial='yes'/>
-            <parameter type-id='type-id-2309'/>
+            <parameter type-id='type-id-2291' is-artificial='yes'/>
+            <parameter type-id='type-id-2310'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2291'>
+      <class-decl name='_AssignableConcept&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2292'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-268' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptINS_17__normal_iteratorIPwSbIwSt11char_traitsIwESaIwEEEEE19__const_constraintsERKS7_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2292' is-artificial='yes'/>
-            <parameter type-id='type-id-1827'/>
+            <parameter type-id='type-id-2293' is-artificial='yes'/>
+            <parameter type-id='type-id-1828'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;char*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2293'>
+      <class-decl name='_AssignableConcept&lt;char*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2294'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-94' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptIPcE19__const_constraintsERKS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2294' is-artificial='yes'/>
+            <parameter type-id='type-id-2295' is-artificial='yes'/>
             <parameter type-id='type-id-272'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;const char*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2295'>
+      <class-decl name='_AssignableConcept&lt;const char*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2296'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptIPKcE19__const_constraintsERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2296' is-artificial='yes'/>
+            <parameter type-id='type-id-2297' is-artificial='yes'/>
             <parameter type-id='type-id-671'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;const wchar_t*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2297'>
+      <class-decl name='_AssignableConcept&lt;const wchar_t*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2298'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-342' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptIPKwE19__const_constraintsERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2298' is-artificial='yes'/>
+            <parameter type-id='type-id-2299' is-artificial='yes'/>
             <parameter type-id='type-id-782'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2299'>
+      <class-decl name='_AssignableConcept&lt;std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2300'>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='__a' type-id='type-id-2311' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
+          <var-decl name='__a' type-id='type-id-2312' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptISt19ostreambuf_iteratorIcSt11char_traitsIcEEE19__const_constraintsERKS4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2300' is-artificial='yes'/>
-            <parameter type-id='type-id-2313'/>
+            <parameter type-id='type-id-2301' is-artificial='yes'/>
+            <parameter type-id='type-id-2314'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2301'>
+      <class-decl name='_AssignableConcept&lt;std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2302'>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='__a' type-id='type-id-2315' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
+          <var-decl name='__a' type-id='type-id-2316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptISt19ostreambuf_iteratorIwSt11char_traitsIwEEE19__const_constraintsERKS4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2302' is-artificial='yes'/>
-            <parameter type-id='type-id-2317'/>
+            <parameter type-id='type-id-2303' is-artificial='yes'/>
+            <parameter type-id='type-id-2318'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_AssignableConcept&lt;wchar_t*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2303'>
+      <class-decl name='_AssignableConcept&lt;wchar_t*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='172' column='1' id='type-id-2304'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='__a' type-id='type-id-334' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='181' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__const_constraints' mangled-name='_ZN9__gnu_cxx18_AssignableConceptIPwE19__const_constraintsERKS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/boost_concept_check.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2304' is-artificial='yes'/>
+            <parameter type-id='type-id-2305' is-artificial='yes'/>
             <parameter type-id='type-id-336'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -28668,179 +28674,179 @@ 
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='operator==&lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator==&lt;const char*, std::basic_string&lt;char&gt; &gt;' mangled-name='_ZN9__gnu_cxxeqIPKcSsEEbRKNS_17__normal_iteratorIT_T0_EES8_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2306'/>
-        <parameter type-id='type-id-2306'/>
+        <parameter type-id='type-id-2307'/>
+        <parameter type-id='type-id-2307'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator==&lt;const wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' mangled-name='_ZN9__gnu_cxxeqIPKwSbIwSt11char_traitsIwESaIwEEEEbRKNS_17__normal_iteratorIT_T0_EESC_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2309'/>
-        <parameter type-id='type-id-2309'/>
+        <parameter type-id='type-id-2310'/>
+        <parameter type-id='type-id-2310'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator==&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt; &lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt; &lt;const char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2306'/>
-        <parameter type-id='type-id-2306'/>
+        <parameter type-id='type-id-2307'/>
+        <parameter type-id='type-id-2307'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt; &lt;const wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2309'/>
-        <parameter type-id='type-id-2309'/>
+        <parameter type-id='type-id-2310'/>
+        <parameter type-id='type-id-2310'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt; &lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;&lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;&lt;const char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2306'/>
-        <parameter type-id='type-id-2306'/>
+        <parameter type-id='type-id-2307'/>
+        <parameter type-id='type-id-2307'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;&lt;const wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2309'/>
-        <parameter type-id='type-id-2309'/>
+        <parameter type-id='type-id-2310'/>
+        <parameter type-id='type-id-2310'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt;=&lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt;=&lt;const char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2306'/>
-        <parameter type-id='type-id-2306'/>
+        <parameter type-id='type-id-2307'/>
+        <parameter type-id='type-id-2307'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt;=&lt;const wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2309'/>
-        <parameter type-id='type-id-2309'/>
+        <parameter type-id='type-id-2310'/>
+        <parameter type-id='type-id-2310'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&lt;=&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;=&lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='874' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;=&lt;const char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='874' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2306'/>
-        <parameter type-id='type-id-2306'/>
+        <parameter type-id='type-id-2307'/>
+        <parameter type-id='type-id-2307'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;=&lt;const wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='874' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2309'/>
-        <parameter type-id='type-id-2309'/>
+        <parameter type-id='type-id-2310'/>
+        <parameter type-id='type-id-2310'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;=&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='874' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator-&lt;const char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='898' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2306'/>
-        <parameter type-id='type-id-2306'/>
-        <return type-id='type-id-1102'/>
+        <parameter type-id='type-id-2307'/>
+        <parameter type-id='type-id-2307'/>
+        <return type-id='type-id-1103'/>
       </function-decl>
       <function-decl name='operator-&lt;const wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='898' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2309'/>
-        <parameter type-id='type-id-2309'/>
-        <return type-id='type-id-1112'/>
+        <parameter type-id='type-id-2310'/>
+        <parameter type-id='type-id-2310'/>
+        <return type-id='type-id-1113'/>
       </function-decl>
       <function-decl name='operator-&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='898' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1827'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-281'/>
       </function-decl>
       <function-decl name='operator+&lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='904' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-276'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-265'/>
       </function-decl>
       <function-decl name='operator+&lt;const char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='904' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1102'/>
-        <parameter type-id='type-id-2306'/>
+        <parameter type-id='type-id-1103'/>
+        <parameter type-id='type-id-2307'/>
         <return type-id='type-id-862'/>
       </function-decl>
       <function-decl name='operator+&lt;const wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='904' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1112'/>
-        <parameter type-id='type-id-2309'/>
+        <parameter type-id='type-id-1113'/>
+        <parameter type-id='type-id-2310'/>
         <return type-id='type-id-877'/>
       </function-decl>
       <function-decl name='operator+&lt;wchar_t*, std::basic_string&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='904' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-281'/>
-        <parameter type-id='type-id-1827'/>
+        <parameter type-id='type-id-1828'/>
         <return type-id='type-id-268'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ctype.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='1024' id='type-id-2251'>
-      <subrange length='128' type-id='type-id-176' id='type-id-2336'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='1024' id='type-id-2252'>
+      <subrange length='128' type-id='type-id-176' id='type-id-2337'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='2048' id='type-id-2337'>
-      <subrange length='256' type-id='type-id-176' id='type-id-2338'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='2048' id='type-id-2338'>
+      <subrange length='256' type-id='type-id-176' id='type-id-2339'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-39' size-in-bits='8192' id='type-id-2252'>
-      <subrange length='256' type-id='type-id-176' id='type-id-2338'/>
+    <array-type-def dimensions='1' type-id='type-id-39' size-in-bits='8192' id='type-id-2253'>
+      <subrange length='256' type-id='type-id-176' id='type-id-2339'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-44' size-in-bits='1024' id='type-id-2254'>
-      <subrange length='16' type-id='type-id-176' id='type-id-1307'/>
+    <array-type-def dimensions='1' type-id='type-id-44' size-in-bits='1024' id='type-id-2255'>
+      <subrange length='16' type-id='type-id-176' id='type-id-1308'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-627' size-in-bits='256' id='type-id-2253'>
-      <subrange length='16' type-id='type-id-176' id='type-id-1307'/>
+    <array-type-def dimensions='1' type-id='type-id-627' size-in-bits='256' id='type-id-2254'>
+      <subrange length='16' type-id='type-id-176' id='type-id-1308'/>
     </array-type-def>
-    <qualified-type-def type-id='type-id-986' const='yes' id='type-id-2339'/>
-    <pointer-type-def type-id='type-id-2339' size-in-bits='64' id='type-id-2340'/>
-    <qualified-type-def type-id='type-id-2341' const='yes' id='type-id-2342'/>
-    <pointer-type-def type-id='type-id-2342' size-in-bits='64' id='type-id-2343'/>
-    <qualified-type-def type-id='type-id-2249' const='yes' id='type-id-2344'/>
-    <pointer-type-def type-id='type-id-2344' size-in-bits='64' id='type-id-2255'/>
-    <qualified-type-def type-id='type-id-2215' const='yes' id='type-id-2345'/>
-    <pointer-type-def type-id='type-id-2345' size-in-bits='64' id='type-id-2346'/>
-    <pointer-type-def type-id='type-id-2155' size-in-bits='64' id='type-id-2214'/>
-    <pointer-type-def type-id='type-id-986' size-in-bits='64' id='type-id-2085'/>
-    <pointer-type-def type-id='type-id-2341' size-in-bits='64' id='type-id-2347'/>
-    <pointer-type-def type-id='type-id-1001' size-in-bits='64' id='type-id-2098'/>
-    <pointer-type-def type-id='type-id-2249' size-in-bits='64' id='type-id-2256'/>
-    <pointer-type-def type-id='type-id-2215' size-in-bits='64' id='type-id-2218'/>
-    <pointer-type-def type-id='type-id-2348' size-in-bits='64' id='type-id-2349'/>
+    <qualified-type-def type-id='type-id-986' const='yes' id='type-id-2340'/>
+    <pointer-type-def type-id='type-id-2340' size-in-bits='64' id='type-id-2341'/>
+    <qualified-type-def type-id='type-id-2342' const='yes' id='type-id-2343'/>
+    <pointer-type-def type-id='type-id-2343' size-in-bits='64' id='type-id-2344'/>
+    <qualified-type-def type-id='type-id-2250' const='yes' id='type-id-2345'/>
+    <pointer-type-def type-id='type-id-2345' size-in-bits='64' id='type-id-2256'/>
+    <qualified-type-def type-id='type-id-2216' const='yes' id='type-id-2346'/>
+    <pointer-type-def type-id='type-id-2346' size-in-bits='64' id='type-id-2347'/>
+    <pointer-type-def type-id='type-id-2156' size-in-bits='64' id='type-id-2215'/>
+    <pointer-type-def type-id='type-id-986' size-in-bits='64' id='type-id-2086'/>
+    <pointer-type-def type-id='type-id-2342' size-in-bits='64' id='type-id-2348'/>
+    <pointer-type-def type-id='type-id-1001' size-in-bits='64' id='type-id-2099'/>
+    <pointer-type-def type-id='type-id-2250' size-in-bits='64' id='type-id-2257'/>
+    <pointer-type-def type-id='type-id-2216' size-in-bits='64' id='type-id-2219'/>
+    <pointer-type-def type-id='type-id-2349' size-in-bits='64' id='type-id-2350'/>
     <namespace-decl name='std'>
-      <class-decl name='ctype_byname&lt;wchar_t&gt;' size-in-bits='10752' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1497' column='1' id='type-id-2348'>
+      <class-decl name='ctype_byname&lt;wchar_t&gt;' size-in-bits='10752' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1497' column='1' id='type-id-2349'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1001'/>
         <member-function access='private'>
           <function-decl name='ctype_byname' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2349' is-artificial='yes'/>
+            <parameter type-id='type-id-2350' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -28848,7 +28854,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype_byname' mangled-name='_ZNSt12ctype_bynameIwEC2EPKcm' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12ctype_bynameIwEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2349' is-artificial='yes'/>
+            <parameter type-id='type-id-2350' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -28856,110 +28862,110 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype_byname' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2349' is-artificial='yes'/>
+            <parameter type-id='type-id-2350' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype_byname' mangled-name='_ZNSt12ctype_bynameIwED0Ev' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12ctype_bynameIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2349' is-artificial='yes'/>
+            <parameter type-id='type-id-2350' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype_byname' mangled-name='_ZNSt12ctype_bynameIwED2Ev' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12ctype_bynameIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2349' is-artificial='yes'/>
+            <parameter type-id='type-id-2350' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='ctype_base' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='42' column='1' id='type-id-2212'>
+      <class-decl name='ctype_base' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='42' column='1' id='type-id-2213'>
         <member-type access='public'>
-          <typedef-decl name='__to_type' type-id='type-id-1489' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='45' column='1' id='type-id-2350'/>
+          <typedef-decl name='__to_type' type-id='type-id-1490' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='45' column='1' id='type-id-2351'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='mask' type-id='type-id-627' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='49' column='1' id='type-id-2215'/>
+          <typedef-decl name='mask' type-id='type-id-627' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='49' column='1' id='type-id-2216'/>
         </member-type>
         <data-member access='public' static='yes'>
-          <var-decl name='upper' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5upperE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='50' column='1' elf-symbol-id='_ZNSt10ctype_base5upperE@@GLIBCXX_3.4'/>
+          <var-decl name='upper' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5upperE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='50' column='1' elf-symbol-id='_ZNSt10ctype_base5upperE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='lower' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5lowerE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='51' column='1' elf-symbol-id='_ZNSt10ctype_base5lowerE@@GLIBCXX_3.4'/>
+          <var-decl name='lower' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5lowerE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='51' column='1' elf-symbol-id='_ZNSt10ctype_base5lowerE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='alpha' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5alphaE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='52' column='1' elf-symbol-id='_ZNSt10ctype_base5alphaE@@GLIBCXX_3.4'/>
+          <var-decl name='alpha' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5alphaE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='52' column='1' elf-symbol-id='_ZNSt10ctype_base5alphaE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='digit' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5digitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='53' column='1' elf-symbol-id='_ZNSt10ctype_base5digitE@@GLIBCXX_3.4'/>
+          <var-decl name='digit' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5digitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='53' column='1' elf-symbol-id='_ZNSt10ctype_base5digitE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='xdigit' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base6xdigitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='54' column='1' elf-symbol-id='_ZNSt10ctype_base6xdigitE@@GLIBCXX_3.4'/>
+          <var-decl name='xdigit' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base6xdigitE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='54' column='1' elf-symbol-id='_ZNSt10ctype_base6xdigitE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='space' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5spaceE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='55' column='1' elf-symbol-id='_ZNSt10ctype_base5spaceE@@GLIBCXX_3.4'/>
+          <var-decl name='space' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5spaceE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='55' column='1' elf-symbol-id='_ZNSt10ctype_base5spaceE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='print' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5printE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='56' column='1' elf-symbol-id='_ZNSt10ctype_base5printE@@GLIBCXX_3.4'/>
+          <var-decl name='print' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5printE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='56' column='1' elf-symbol-id='_ZNSt10ctype_base5printE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='graph' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5graphE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='57' column='1' elf-symbol-id='_ZNSt10ctype_base5graphE@@GLIBCXX_3.4'/>
+          <var-decl name='graph' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5graphE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='57' column='1' elf-symbol-id='_ZNSt10ctype_base5graphE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='cntrl' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5cntrlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='58' column='1' elf-symbol-id='_ZNSt10ctype_base5cntrlE@@GLIBCXX_3.4'/>
+          <var-decl name='cntrl' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5cntrlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='58' column='1' elf-symbol-id='_ZNSt10ctype_base5cntrlE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='punct' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5punctE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='59' column='1' elf-symbol-id='_ZNSt10ctype_base5punctE@@GLIBCXX_3.4'/>
+          <var-decl name='punct' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5punctE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='59' column='1' elf-symbol-id='_ZNSt10ctype_base5punctE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='alnum' type-id='type-id-2345' mangled-name='_ZNSt10ctype_base5alnumE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='60' column='1' elf-symbol-id='_ZNSt10ctype_base5alnumE@@GLIBCXX_3.4'/>
+          <var-decl name='alnum' type-id='type-id-2346' mangled-name='_ZNSt10ctype_base5alnumE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_base.h' line='60' column='1' elf-symbol-id='_ZNSt10ctype_base5alnumE@@GLIBCXX_3.4'/>
         </data-member>
       </class-decl>
       <class-decl name='ctype&lt;char&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='676' column='1' is-declaration-only='yes' id='type-id-986'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2212'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2213'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='681' column='1' id='type-id-2341'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='681' column='1' id='type-id-2342'/>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_ctype' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='685' column='1'/>
+          <var-decl name='_M_c_locale_ctype' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='685' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='192'>
           <var-decl name='_M_del' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='686' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='256'>
-          <var-decl name='_M_toupper' type-id='type-id-2350' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='687' column='1'/>
+          <var-decl name='_M_toupper' type-id='type-id-2351' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='687' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='320'>
-          <var-decl name='_M_tolower' type-id='type-id-2350' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='688' column='1'/>
+          <var-decl name='_M_tolower' type-id='type-id-2351' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='688' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='384'>
-          <var-decl name='_M_table' type-id='type-id-2346' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='689' column='1'/>
+          <var-decl name='_M_table' type-id='type-id-2347' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='689' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='448'>
           <var-decl name='_M_widen_ok' type-id='type-id-188' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='690' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='456'>
-          <var-decl name='_M_widen' type-id='type-id-2337' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='691' column='1'/>
+          <var-decl name='_M_widen' type-id='type-id-2338' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='691' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='2504'>
-          <var-decl name='_M_narrow' type-id='type-id-2337' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='692' column='1'/>
+          <var-decl name='_M_narrow' type-id='type-id-2338' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='692' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='4552'>
           <var-decl name='_M_narrow_ok' type-id='type-id-188' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='693' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt5ctypeIcE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='47' column='1' elf-symbol-id='_ZNSt5ctypeIcE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt5ctypeIcE2idE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='47' column='1' elf-symbol-id='_ZNSt5ctypeIcE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
-          <var-decl name='table_size' type-id='type-id-1516' mangled-name='_ZNSt5ctypeIcE10table_sizeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='700' column='1' elf-symbol-id='_ZNSt5ctypeIcE10table_sizeE@@GLIBCXX_3.4'/>
+          <var-decl name='table_size' type-id='type-id-1517' mangled-name='_ZNSt5ctypeIcE10table_sizeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='700' column='1' elf-symbol-id='_ZNSt5ctypeIcE10table_sizeE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='ctype' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='713' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2085' is-artificial='yes'/>
-            <parameter type-id='type-id-2346'/>
+            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2347'/>
             <parameter type-id='type-id-40'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -28967,9 +28973,9 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='726' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2085' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
-            <parameter type-id='type-id-2346'/>
+            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
+            <parameter type-id='type-id-2347'/>
             <parameter type-id='type-id-40'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -28977,34 +28983,34 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='table' mangled-name='_ZNKSt5ctypeIcE5tableEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <return type-id='type-id-2346'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <return type-id='type-id-2347'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_narrow_init' mangled-name='_ZNKSt5ctypeIcE14_M_narrow_initEv' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='66' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE14_M_narrow_initEv@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_widen_init' mangled-name='_ZNKSt5ctypeIcE13_M_widen_initEv' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE13_M_widen_initEv@@GLIBCXX_3.4.11'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is' mangled-name='_ZNKSt5ctypeIcE2isEtc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_inline.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='scan_is' mangled-name='_ZNKSt5ctypeIcE7scan_isEtPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_inline.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-4'/>
@@ -29012,14 +29018,14 @@ 
         </member-function>
         <member-function access='private' static='yes'>
           <function-decl name='classic_table' mangled-name='_ZNSt5ctypeIcE13classic_tableEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_configure_char.cc' line='43' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIcE13classic_tableEv@@GLIBCXX_3.4'>
-            <return type-id='type-id-2346'/>
+            <return type-id='type-id-2347'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype' mangled-name='_ZNSt5ctypeIcEC2EP15__locale_structPKtbm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='726' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIcEC2EP15__locale_structPKtbm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2085' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
-            <parameter type-id='type-id-2346'/>
+            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
+            <parameter type-id='type-id-2347'/>
             <parameter type-id='type-id-40'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -29027,8 +29033,8 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype' mangled-name='_ZNSt5ctypeIcEC2EPKtbm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIcEC2EPKtbm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2085' is-artificial='yes'/>
-            <parameter type-id='type-id-2346'/>
+            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2347'/>
             <parameter type-id='type-id-40'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -29036,23 +29042,23 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='narrow' mangled-name='_ZNKSt5ctypeIcE6narrowEcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='925' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2341'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2342'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='widen' mangled-name='_ZNKSt5ctypeIcE5widenEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='867' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2341'/>
+            <return type-id='type-id-2342'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='scan_not' mangled-name='_ZNKSt5ctypeIcE8scan_notEtPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/ctype_inline.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-4'/>
@@ -29060,66 +29066,66 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='toupper' mangled-name='_ZNKSt5ctypeIcE7toupperEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='797' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2341'/>
-            <return type-id='type-id-2341'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2342'/>
+            <return type-id='type-id-2342'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='widen' mangled-name='_ZNKSt5ctypeIcE5widenEPKcS2_Pc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='894' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2347'/>
+            <parameter type-id='type-id-2348'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2085' is-artificial='yes'/>
+            <parameter type-id='type-id-2086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype' mangled-name='_ZNSt5ctypeIcED0Ev' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2085' is-artificial='yes'/>
+            <parameter type-id='type-id-2086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype' mangled-name='_ZNSt5ctypeIcED2Ev' filepath='../../../.././libstdc++-v3/src/c++98/ctype.cc' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt5ctypeIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2085' is-artificial='yes'/>
+            <parameter type-id='type-id-2086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIcE10do_toupperEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1007' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2341'/>
-            <return type-id='type-id-2341'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2342'/>
+            <return type-id='type-id-2342'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIcE10do_toupperEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_configure_char.cc' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE10do_toupperEc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIcE10do_toupperEPcPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2347'/>
-            <parameter type-id='type-id-2343'/>
-            <return type-id='type-id-2343'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2348'/>
+            <parameter type-id='type-id-2344'/>
+            <return type-id='type-id-2344'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt5ctypeIcE10do_toupperEPcPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_configure_char.cc' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE10do_toupperEPcPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-4'/>
@@ -29127,29 +29133,29 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIcE10do_tolowerEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1040' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2341'/>
-            <return type-id='type-id-2341'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2342'/>
+            <return type-id='type-id-2342'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIcE10do_tolowerEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_configure_char.cc' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE10do_tolowerEc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIcE10do_tolowerEPcPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1057' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2347'/>
-            <parameter type-id='type-id-2343'/>
-            <return type-id='type-id-2343'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2348'/>
+            <parameter type-id='type-id-2344'/>
+            <return type-id='type-id-2344'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt5ctypeIcE10do_tolowerEPcPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_configure_char.cc' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE10do_tolowerEPcPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-4'/>
@@ -29157,215 +29163,215 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_widen' mangled-name='_ZNKSt5ctypeIcE8do_widenEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1077' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE8do_widenEc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2341'/>
+            <return type-id='type-id-2342'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_widen' mangled-name='_ZNKSt5ctypeIcE8do_widenEPKcS2_Pc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE8do_widenEPKcS2_Pc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2347'/>
+            <parameter type-id='type-id-2348'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt5ctypeIcE9do_narrowEcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE9do_narrowEcc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2341'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2342'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2340' is-artificial='yes'/>
-            <parameter type-id='type-id-2343'/>
-            <parameter type-id='type-id-2343'/>
+            <parameter type-id='type-id-2341' is-artificial='yes'/>
+            <parameter type-id='type-id-2344'/>
+            <parameter type-id='type-id-2344'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-94'/>
-            <return type-id='type-id-2343'/>
+            <return type-id='type-id-2344'/>
           </function-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ext-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-471' size-in-bits='2944' id='type-id-2351'>
-      <subrange length='46' type-id='type-id-176' id='type-id-2352'/>
+    <array-type-def dimensions='1' type-id='type-id-471' size-in-bits='2944' id='type-id-2352'>
+      <subrange length='46' type-id='type-id-176' id='type-id-2353'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-44' size-in-bits='2944' id='type-id-2353'>
-      <subrange length='46' type-id='type-id-176' id='type-id-2352'/>
+    <array-type-def dimensions='1' type-id='type-id-44' size-in-bits='2944' id='type-id-2354'>
+      <subrange length='46' type-id='type-id-176' id='type-id-2353'/>
     </array-type-def>
-    <pointer-type-def type-id='type-id-2354' size-in-bits='64' id='type-id-2355'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2356' size-in-bits='64' id='type-id-2357'/>
-    <pointer-type-def type-id='type-id-2356' size-in-bits='64' id='type-id-2358'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2359' size-in-bits='64' id='type-id-2360'/>
-    <pointer-type-def type-id='type-id-2359' size-in-bits='64' id='type-id-2361'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2362' size-in-bits='64' id='type-id-2363'/>
-    <pointer-type-def type-id='type-id-2362' size-in-bits='64' id='type-id-2364'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2365' size-in-bits='64' id='type-id-2366'/>
-    <pointer-type-def type-id='type-id-2365' size-in-bits='64' id='type-id-2367'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2368' size-in-bits='64' id='type-id-2369'/>
-    <pointer-type-def type-id='type-id-2368' size-in-bits='64' id='type-id-2370'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2371' size-in-bits='64' id='type-id-2372'/>
-    <pointer-type-def type-id='type-id-2371' size-in-bits='64' id='type-id-2373'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2374' size-in-bits='64' id='type-id-2375'/>
-    <pointer-type-def type-id='type-id-2374' size-in-bits='64' id='type-id-2376'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2377' size-in-bits='64' id='type-id-2378'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2379' size-in-bits='64' id='type-id-2380'/>
-    <pointer-type-def type-id='type-id-2379' size-in-bits='64' id='type-id-2381'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2382' size-in-bits='64' id='type-id-2383'/>
-    <pointer-type-def type-id='type-id-2384' size-in-bits='64' id='type-id-2385'/>
-    <pointer-type-def type-id='type-id-2386' size-in-bits='64' id='type-id-2387'/>
-    <pointer-type-def type-id='type-id-2388' size-in-bits='64' id='type-id-2389'/>
-    <pointer-type-def type-id='type-id-2390' size-in-bits='64' id='type-id-2391'/>
-    <pointer-type-def type-id='type-id-2392' size-in-bits='64' id='type-id-2393'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2394' size-in-bits='64' id='type-id-2395'/>
-    <pointer-type-def type-id='type-id-2396' size-in-bits='64' id='type-id-2397'/>
-    <pointer-type-def type-id='type-id-2398' size-in-bits='64' id='type-id-2399'/>
-    <pointer-type-def type-id='type-id-2400' size-in-bits='64' id='type-id-2401'/>
-    <pointer-type-def type-id='type-id-2402' size-in-bits='64' id='type-id-2403'/>
-    <pointer-type-def type-id='type-id-2404' size-in-bits='64' id='type-id-2405'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2406' size-in-bits='64' id='type-id-2407'/>
-    <pointer-type-def type-id='type-id-2408' size-in-bits='64' id='type-id-2409'/>
-    <pointer-type-def type-id='type-id-2410' size-in-bits='64' id='type-id-2411'/>
-    <pointer-type-def type-id='type-id-2412' size-in-bits='64' id='type-id-2413'/>
-    <pointer-type-def type-id='type-id-2414' size-in-bits='64' id='type-id-2415'/>
-    <pointer-type-def type-id='type-id-2416' size-in-bits='64' id='type-id-2417'/>
-    <pointer-type-def type-id='type-id-2418' size-in-bits='64' id='type-id-2419'/>
-    <qualified-type-def type-id='type-id-2356' const='yes' id='type-id-2420'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2420' size-in-bits='64' id='type-id-2421'/>
-    <qualified-type-def type-id='type-id-2422' const='yes' id='type-id-2423'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2423' size-in-bits='64' id='type-id-2424'/>
-    <qualified-type-def type-id='type-id-2359' const='yes' id='type-id-2425'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2425' size-in-bits='64' id='type-id-2426'/>
-    <qualified-type-def type-id='type-id-2427' const='yes' id='type-id-2428'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2428' size-in-bits='64' id='type-id-2429'/>
-    <qualified-type-def type-id='type-id-2362' const='yes' id='type-id-2430'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2430' size-in-bits='64' id='type-id-2431'/>
-    <qualified-type-def type-id='type-id-2432' const='yes' id='type-id-2433'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2433' size-in-bits='64' id='type-id-2434'/>
-    <qualified-type-def type-id='type-id-2365' const='yes' id='type-id-2435'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2435' size-in-bits='64' id='type-id-2436'/>
-    <qualified-type-def type-id='type-id-2437' const='yes' id='type-id-2438'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2438' size-in-bits='64' id='type-id-2439'/>
-    <qualified-type-def type-id='type-id-2368' const='yes' id='type-id-2440'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2440' size-in-bits='64' id='type-id-2441'/>
-    <qualified-type-def type-id='type-id-2442' const='yes' id='type-id-2443'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2443' size-in-bits='64' id='type-id-2444'/>
-    <qualified-type-def type-id='type-id-2371' const='yes' id='type-id-2445'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2445' size-in-bits='64' id='type-id-2446'/>
-    <qualified-type-def type-id='type-id-2447' const='yes' id='type-id-2448'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2448' size-in-bits='64' id='type-id-2449'/>
-    <qualified-type-def type-id='type-id-2374' const='yes' id='type-id-2450'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2450' size-in-bits='64' id='type-id-2451'/>
-    <qualified-type-def type-id='type-id-2377' const='yes' id='type-id-2452'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2452' size-in-bits='64' id='type-id-2453'/>
-    <qualified-type-def type-id='type-id-2379' const='yes' id='type-id-2454'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2454' size-in-bits='64' id='type-id-2455'/>
-    <qualified-type-def type-id='type-id-2382' const='yes' id='type-id-2456'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2456' size-in-bits='64' id='type-id-2457'/>
-    <qualified-type-def type-id='type-id-2384' const='yes' id='type-id-2458'/>
-    <pointer-type-def type-id='type-id-2458' size-in-bits='64' id='type-id-2459'/>
-    <qualified-type-def type-id='type-id-2394' const='yes' id='type-id-2460'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2460' size-in-bits='64' id='type-id-2461'/>
-    <qualified-type-def type-id='type-id-2396' const='yes' id='type-id-2462'/>
-    <pointer-type-def type-id='type-id-2462' size-in-bits='64' id='type-id-2463'/>
-    <qualified-type-def type-id='type-id-2406' const='yes' id='type-id-2464'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2464' size-in-bits='64' id='type-id-2465'/>
+    <pointer-type-def type-id='type-id-2355' size-in-bits='64' id='type-id-2356'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2357' size-in-bits='64' id='type-id-2358'/>
+    <pointer-type-def type-id='type-id-2357' size-in-bits='64' id='type-id-2359'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2360' size-in-bits='64' id='type-id-2361'/>
+    <pointer-type-def type-id='type-id-2360' size-in-bits='64' id='type-id-2362'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2363' size-in-bits='64' id='type-id-2364'/>
+    <pointer-type-def type-id='type-id-2363' size-in-bits='64' id='type-id-2365'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2366' size-in-bits='64' id='type-id-2367'/>
+    <pointer-type-def type-id='type-id-2366' size-in-bits='64' id='type-id-2368'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2369' size-in-bits='64' id='type-id-2370'/>
+    <pointer-type-def type-id='type-id-2369' size-in-bits='64' id='type-id-2371'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2372' size-in-bits='64' id='type-id-2373'/>
+    <pointer-type-def type-id='type-id-2372' size-in-bits='64' id='type-id-2374'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2375' size-in-bits='64' id='type-id-2376'/>
+    <pointer-type-def type-id='type-id-2375' size-in-bits='64' id='type-id-2377'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2378' size-in-bits='64' id='type-id-2379'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2380' size-in-bits='64' id='type-id-2381'/>
+    <pointer-type-def type-id='type-id-2380' size-in-bits='64' id='type-id-2382'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2383' size-in-bits='64' id='type-id-2384'/>
+    <pointer-type-def type-id='type-id-2385' size-in-bits='64' id='type-id-2386'/>
+    <pointer-type-def type-id='type-id-2387' size-in-bits='64' id='type-id-2388'/>
+    <pointer-type-def type-id='type-id-2389' size-in-bits='64' id='type-id-2390'/>
+    <pointer-type-def type-id='type-id-2391' size-in-bits='64' id='type-id-2392'/>
+    <pointer-type-def type-id='type-id-2393' size-in-bits='64' id='type-id-2394'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2395' size-in-bits='64' id='type-id-2396'/>
+    <pointer-type-def type-id='type-id-2397' size-in-bits='64' id='type-id-2398'/>
+    <pointer-type-def type-id='type-id-2399' size-in-bits='64' id='type-id-2400'/>
+    <pointer-type-def type-id='type-id-2401' size-in-bits='64' id='type-id-2402'/>
+    <pointer-type-def type-id='type-id-2403' size-in-bits='64' id='type-id-2404'/>
+    <pointer-type-def type-id='type-id-2405' size-in-bits='64' id='type-id-2406'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2407' size-in-bits='64' id='type-id-2408'/>
+    <pointer-type-def type-id='type-id-2409' size-in-bits='64' id='type-id-2410'/>
+    <pointer-type-def type-id='type-id-2411' size-in-bits='64' id='type-id-2412'/>
+    <pointer-type-def type-id='type-id-2413' size-in-bits='64' id='type-id-2414'/>
+    <pointer-type-def type-id='type-id-2415' size-in-bits='64' id='type-id-2416'/>
+    <pointer-type-def type-id='type-id-2417' size-in-bits='64' id='type-id-2418'/>
+    <pointer-type-def type-id='type-id-2419' size-in-bits='64' id='type-id-2420'/>
+    <qualified-type-def type-id='type-id-2357' const='yes' id='type-id-2421'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2421' size-in-bits='64' id='type-id-2422'/>
+    <qualified-type-def type-id='type-id-2423' const='yes' id='type-id-2424'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2424' size-in-bits='64' id='type-id-2425'/>
+    <qualified-type-def type-id='type-id-2360' const='yes' id='type-id-2426'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2426' size-in-bits='64' id='type-id-2427'/>
+    <qualified-type-def type-id='type-id-2428' const='yes' id='type-id-2429'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2429' size-in-bits='64' id='type-id-2430'/>
+    <qualified-type-def type-id='type-id-2363' const='yes' id='type-id-2431'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2431' size-in-bits='64' id='type-id-2432'/>
+    <qualified-type-def type-id='type-id-2433' const='yes' id='type-id-2434'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2434' size-in-bits='64' id='type-id-2435'/>
+    <qualified-type-def type-id='type-id-2366' const='yes' id='type-id-2436'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2436' size-in-bits='64' id='type-id-2437'/>
+    <qualified-type-def type-id='type-id-2438' const='yes' id='type-id-2439'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2439' size-in-bits='64' id='type-id-2440'/>
+    <qualified-type-def type-id='type-id-2369' const='yes' id='type-id-2441'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2441' size-in-bits='64' id='type-id-2442'/>
+    <qualified-type-def type-id='type-id-2443' const='yes' id='type-id-2444'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2444' size-in-bits='64' id='type-id-2445'/>
+    <qualified-type-def type-id='type-id-2372' const='yes' id='type-id-2446'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2446' size-in-bits='64' id='type-id-2447'/>
+    <qualified-type-def type-id='type-id-2448' const='yes' id='type-id-2449'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2449' size-in-bits='64' id='type-id-2450'/>
+    <qualified-type-def type-id='type-id-2375' const='yes' id='type-id-2451'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2451' size-in-bits='64' id='type-id-2452'/>
+    <qualified-type-def type-id='type-id-2378' const='yes' id='type-id-2453'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2453' size-in-bits='64' id='type-id-2454'/>
+    <qualified-type-def type-id='type-id-2380' const='yes' id='type-id-2455'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2455' size-in-bits='64' id='type-id-2456'/>
+    <qualified-type-def type-id='type-id-2383' const='yes' id='type-id-2457'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2457' size-in-bits='64' id='type-id-2458'/>
+    <qualified-type-def type-id='type-id-2385' const='yes' id='type-id-2459'/>
+    <pointer-type-def type-id='type-id-2459' size-in-bits='64' id='type-id-2460'/>
+    <qualified-type-def type-id='type-id-2395' const='yes' id='type-id-2461'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2461' size-in-bits='64' id='type-id-2462'/>
+    <qualified-type-def type-id='type-id-2397' const='yes' id='type-id-2463'/>
+    <pointer-type-def type-id='type-id-2463' size-in-bits='64' id='type-id-2464'/>
+    <qualified-type-def type-id='type-id-2407' const='yes' id='type-id-2465'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2465' size-in-bits='64' id='type-id-2466'/>
     <pointer-type-def type-id='type-id-688' size-in-bits='64' id='type-id-961'/>
     <pointer-type-def type-id='type-id-951' size-in-bits='64' id='type-id-963'/>
     <pointer-type-def type-id='type-id-691' size-in-bits='64' id='type-id-979'/>
     <pointer-type-def type-id='type-id-972' size-in-bits='64' id='type-id-981'/>
-    <qualified-type-def type-id='type-id-2466' volatile='yes' id='type-id-2467'/>
+    <qualified-type-def type-id='type-id-2467' volatile='yes' id='type-id-2468'/>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='_Refcount_Base' size-in-bits='384' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='454' column='1' id='type-id-2354'>
+      <class-decl name='_Refcount_Base' size-in-bits='384' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='454' column='1' id='type-id-2355'>
         <member-type access='public'>
-          <typedef-decl name='_RC_t' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='457' column='1' id='type-id-2466'/>
+          <typedef-decl name='_RC_t' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='457' column='1' id='type-id-2467'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_ref_count' type-id='type-id-2467' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='460' column='1'/>
+          <var-decl name='_M_ref_count' type-id='type-id-2468' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='460' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='64'>
           <var-decl name='_M_ref_count_lock' type-id='type-id-69' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='464' column='1'/>
         </data-member>
         <member-function access='public' constructor='yes'>
           <function-decl name='_Refcount_Base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2355' is-artificial='yes'/>
-            <parameter type-id='type-id-2466'/>
+            <parameter type-id='type-id-2356' is-artificial='yes'/>
+            <parameter type-id='type-id-2467'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_rep_base&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='549' column='1' id='type-id-2384'>
+      <class-decl name='_Rope_rep_base&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='549' column='1' id='type-id-2385'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-682'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-682' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='552' column='1' id='type-id-2394'/>
+          <typedef-decl name='allocator_type' type-id='type-id-682' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='552' column='1' id='type-id-2395'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__C' type-id='type-id-2356' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2386'/>
+          <typedef-decl name='__C' type-id='type-id-2357' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2387'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__F' type-id='type-id-2362' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2388'/>
+          <typedef-decl name='__F' type-id='type-id-2363' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2389'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__L' type-id='type-id-2368' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2390'/>
+          <typedef-decl name='__L' type-id='type-id-2369' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2391'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__S' type-id='type-id-2468' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2392'/>
+          <typedef-decl name='__S' type-id='type-id-2469' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2393'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_size' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='569' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_rep_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='566' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2385' is-artificial='yes'/>
+            <parameter type-id='type-id-2386' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2461'/>
+            <parameter type-id='type-id-2462'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_rep_base&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='549' column='1' id='type-id-2396'>
+      <class-decl name='_Rope_rep_base&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='549' column='1' id='type-id-2397'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-685'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-685' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='552' column='1' id='type-id-2406'/>
+          <typedef-decl name='allocator_type' type-id='type-id-685' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='552' column='1' id='type-id-2407'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__C' type-id='type-id-2359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2398'/>
+          <typedef-decl name='__C' type-id='type-id-2360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2399'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__F' type-id='type-id-2365' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2400'/>
+          <typedef-decl name='__F' type-id='type-id-2366' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2401'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__L' type-id='type-id-2371' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2402'/>
+          <typedef-decl name='__L' type-id='type-id-2372' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2403'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='__S' type-id='type-id-2469' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2404'/>
+          <typedef-decl name='__S' type-id='type-id-2470' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='578' column='1' id='type-id-2405'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_size' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='569' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_rep_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='566' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2397' is-artificial='yes'/>
+            <parameter type-id='type-id-2398' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2465'/>
+            <parameter type-id='type-id-2466'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeRep&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='583' column='1' id='type-id-2374'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2384'/>
-        <base-class access='public' layout-offset-in-bits='64' type-id='type-id-2354'/>
+      <class-decl name='_Rope_RopeRep&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='583' column='1' id='type-id-2375'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2385'/>
+        <base-class access='public' layout-offset-in-bits='64' type-id='type-id-2355'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2394' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='606' column='1' id='type-id-2377'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2395' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='606' column='1' id='type-id-2378'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='448'>
-          <var-decl name='_M_tag' type-id='type-id-2470' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='590' column='1'/>
+          <var-decl name='_M_tag' type-id='type-id-2471' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='590' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='456'>
           <var-decl name='_M_is_balanced' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='591' column='1'/>
@@ -29381,31 +29387,31 @@ 
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeRep' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='611' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2376' is-artificial='yes'/>
-            <parameter type-id='type-id-2470'/>
+            <parameter type-id='type-id-2377' is-artificial='yes'/>
+            <parameter type-id='type-id-2471'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-40'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2453'/>
+            <parameter type-id='type-id-2454'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeRep' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='685' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2376' is-artificial='yes'/>
-            <parameter type-id='type-id-2451'/>
+            <parameter type-id='type-id-2377' is-artificial='yes'/>
+            <parameter type-id='type-id-2452'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeRep&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='583' column='1' id='type-id-2379'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2396'/>
-        <base-class access='public' layout-offset-in-bits='64' type-id='type-id-2354'/>
+      <class-decl name='_Rope_RopeRep&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='583' column='1' id='type-id-2380'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2397'/>
+        <base-class access='public' layout-offset-in-bits='64' type-id='type-id-2355'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2406' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='606' column='1' id='type-id-2382'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2407' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='606' column='1' id='type-id-2383'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='448'>
-          <var-decl name='_M_tag' type-id='type-id-2470' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='590' column='1'/>
+          <var-decl name='_M_tag' type-id='type-id-2471' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='590' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='456'>
           <var-decl name='_M_is_balanced' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='591' column='1'/>
@@ -29421,463 +29427,463 @@ 
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeRep' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='611' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2381' is-artificial='yes'/>
-            <parameter type-id='type-id-2470'/>
+            <parameter type-id='type-id-2382' is-artificial='yes'/>
+            <parameter type-id='type-id-2471'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-40'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2457'/>
+            <parameter type-id='type-id-2458'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeRep' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='685' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2381' is-artificial='yes'/>
-            <parameter type-id='type-id-2455'/>
+            <parameter type-id='type-id-2382' is-artificial='yes'/>
+            <parameter type-id='type-id-2456'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeLeaf&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='960' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='689' column='1' id='type-id-2368'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2374'/>
+      <class-decl name='_Rope_RopeLeaf&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='960' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='689' column='1' id='type-id-2369'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2375'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2394' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='722' column='1' id='type-id-2442'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2395' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='722' column='1' id='type-id-2443'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='896'>
           <var-decl name='_M_data' type-id='type-id-94' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='716' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeLeaf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='724' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2370' is-artificial='yes'/>
+            <parameter type-id='type-id-2371' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2444'/>
+            <parameter type-id='type-id-2445'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Rope_RopeLeaf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='739' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2370' is-artificial='yes'/>
+            <parameter type-id='type-id-2371' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeLeaf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='751' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2370' is-artificial='yes'/>
-            <parameter type-id='type-id-2441'/>
+            <parameter type-id='type-id-2371' is-artificial='yes'/>
+            <parameter type-id='type-id-2442'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeLeaf&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='960' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='689' column='1' id='type-id-2371'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2379'/>
+      <class-decl name='_Rope_RopeLeaf&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='960' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='689' column='1' id='type-id-2372'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2380'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2406' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='722' column='1' id='type-id-2447'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2407' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='722' column='1' id='type-id-2448'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='896'>
           <var-decl name='_M_data' type-id='type-id-334' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='716' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeLeaf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='724' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2373' is-artificial='yes'/>
+            <parameter type-id='type-id-2374' is-artificial='yes'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2449'/>
+            <parameter type-id='type-id-2450'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Rope_RopeLeaf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='739' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2373' is-artificial='yes'/>
+            <parameter type-id='type-id-2374' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeLeaf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='751' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2373' is-artificial='yes'/>
-            <parameter type-id='type-id-2446'/>
+            <parameter type-id='type-id-2374' is-artificial='yes'/>
+            <parameter type-id='type-id-2447'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeConcatenation&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='755' column='1' id='type-id-2356'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2374'/>
+      <class-decl name='_Rope_RopeConcatenation&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='755' column='1' id='type-id-2357'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2375'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2394' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='763' column='1' id='type-id-2422'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2395' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='763' column='1' id='type-id-2423'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='896'>
-          <var-decl name='_M_left' type-id='type-id-2376' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='759' column='1'/>
+          <var-decl name='_M_left' type-id='type-id-2377' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='759' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='960'>
-          <var-decl name='_M_right' type-id='type-id-2376' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='760' column='1'/>
+          <var-decl name='_M_right' type-id='type-id-2377' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='760' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeConcatenation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='765' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2358' is-artificial='yes'/>
-            <parameter type-id='type-id-2376'/>
-            <parameter type-id='type-id-2376'/>
-            <parameter type-id='type-id-2424'/>
+            <parameter type-id='type-id-2359' is-artificial='yes'/>
+            <parameter type-id='type-id-2377'/>
+            <parameter type-id='type-id-2377'/>
+            <parameter type-id='type-id-2425'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Rope_RopeConcatenation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='776' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2358' is-artificial='yes'/>
+            <parameter type-id='type-id-2359' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeConcatenation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='787' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2358' is-artificial='yes'/>
-            <parameter type-id='type-id-2421'/>
+            <parameter type-id='type-id-2359' is-artificial='yes'/>
+            <parameter type-id='type-id-2422'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeConcatenation&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='755' column='1' id='type-id-2359'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2379'/>
+      <class-decl name='_Rope_RopeConcatenation&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='755' column='1' id='type-id-2360'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2380'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2406' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='763' column='1' id='type-id-2427'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2407' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='763' column='1' id='type-id-2428'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='896'>
-          <var-decl name='_M_left' type-id='type-id-2381' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='759' column='1'/>
+          <var-decl name='_M_left' type-id='type-id-2382' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='759' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='960'>
-          <var-decl name='_M_right' type-id='type-id-2381' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='760' column='1'/>
+          <var-decl name='_M_right' type-id='type-id-2382' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='760' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeConcatenation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='765' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2361' is-artificial='yes'/>
-            <parameter type-id='type-id-2381'/>
-            <parameter type-id='type-id-2381'/>
-            <parameter type-id='type-id-2429'/>
+            <parameter type-id='type-id-2362' is-artificial='yes'/>
+            <parameter type-id='type-id-2382'/>
+            <parameter type-id='type-id-2382'/>
+            <parameter type-id='type-id-2430'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Rope_RopeConcatenation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='776' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2361' is-artificial='yes'/>
+            <parameter type-id='type-id-2362' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeConcatenation' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='787' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2361' is-artificial='yes'/>
-            <parameter type-id='type-id-2426'/>
+            <parameter type-id='type-id-2362' is-artificial='yes'/>
+            <parameter type-id='type-id-2427'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeFunction&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='791' column='1' id='type-id-2362'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2374'/>
+      <class-decl name='_Rope_RopeFunction&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='791' column='1' id='type-id-2363'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2375'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2394' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='812' column='1' id='type-id-2432'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2395' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='812' column='1' id='type-id-2433'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='896'>
-          <var-decl name='_M_fn' type-id='type-id-2409' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='795' column='1'/>
+          <var-decl name='_M_fn' type-id='type-id-2410' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='795' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='960'>
           <var-decl name='_M_delete_when_done' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='797' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeFunction' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='814' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2364' is-artificial='yes'/>
-            <parameter type-id='type-id-2409'/>
+            <parameter type-id='type-id-2365' is-artificial='yes'/>
+            <parameter type-id='type-id-2410'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2434'/>
+            <parameter type-id='type-id-2435'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Rope_RopeFunction' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='831' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2364' is-artificial='yes'/>
+            <parameter type-id='type-id-2365' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeFunction' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='842' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2364' is-artificial='yes'/>
-            <parameter type-id='type-id-2431'/>
+            <parameter type-id='type-id-2365' is-artificial='yes'/>
+            <parameter type-id='type-id-2432'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeFunction&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='791' column='1' id='type-id-2365'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2379'/>
+      <class-decl name='_Rope_RopeFunction&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='1024' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='791' column='1' id='type-id-2366'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2380'/>
         <member-type access='public'>
-          <typedef-decl name='allocator_type' type-id='type-id-2406' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='812' column='1' id='type-id-2437'/>
+          <typedef-decl name='allocator_type' type-id='type-id-2407' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='812' column='1' id='type-id-2438'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='896'>
-          <var-decl name='_M_fn' type-id='type-id-2411' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='795' column='1'/>
+          <var-decl name='_M_fn' type-id='type-id-2412' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='795' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='960'>
           <var-decl name='_M_delete_when_done' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='797' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Rope_RopeFunction' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='814' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2367' is-artificial='yes'/>
-            <parameter type-id='type-id-2411'/>
+            <parameter type-id='type-id-2368' is-artificial='yes'/>
+            <parameter type-id='type-id-2412'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2439'/>
+            <parameter type-id='type-id-2440'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes'>
           <function-decl name='~_Rope_RopeFunction' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='831' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2367' is-artificial='yes'/>
+            <parameter type-id='type-id-2368' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_Rope_RopeFunction' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='842' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2367' is-artificial='yes'/>
-            <parameter type-id='type-id-2436'/>
+            <parameter type-id='type-id-2368' is-artificial='yes'/>
+            <parameter type-id='type-id-2437'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='rope&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1522' column='1' id='type-id-2471'>
+      <class-decl name='rope&lt;char, std::allocator&lt;char&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1522' column='1' id='type-id-2472'>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1527' column='1' id='type-id-2472'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1527' column='1' id='type-id-2473'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeRep' type-id='type-id-2374' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1561' column='1' id='type-id-2412'/>
+          <typedef-decl name='_RopeRep' type-id='type-id-2375' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1561' column='1' id='type-id-2413'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeConcatenation' type-id='type-id-2356' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1562' column='1' id='type-id-2473'/>
+          <typedef-decl name='_RopeConcatenation' type-id='type-id-2357' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1562' column='1' id='type-id-2474'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeLeaf' type-id='type-id-2368' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1563' column='1' id='type-id-2474'/>
+          <typedef-decl name='_RopeLeaf' type-id='type-id-2369' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1563' column='1' id='type-id-2475'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeFunction' type-id='type-id-2362' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1564' column='1' id='type-id-2475'/>
+          <typedef-decl name='_RopeFunction' type-id='type-id-2363' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1564' column='1' id='type-id-2476'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_min_len' type-id='type-id-2351' mangled-name='_ZN9__gnu_cxx4ropeIcSaIcEE10_S_min_lenE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1754' column='1'/>
+          <var-decl name='_S_min_len' type-id='type-id-2352' mangled-name='_ZN9__gnu_cxx4ropeIcSaIcEE10_S_min_lenE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1754' column='1'/>
         </data-member>
         <member-function access='protected' static='yes'>
           <function-decl name='_S_fetch' mangled-name='_ZN9__gnu_cxx4ropeIcSaIcEE8_S_fetchEPNS_13_Rope_RopeRepIcS1_EEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1568' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2413'/>
-            <parameter type-id='type-id-2472'/>
+            <parameter type-id='type-id-2414'/>
+            <parameter type-id='type-id-2473'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='rope&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1522' column='1' id='type-id-2476'>
+      <class-decl name='rope&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1522' column='1' id='type-id-2477'>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1527' column='1' id='type-id-2477'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1527' column='1' id='type-id-2478'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeRep' type-id='type-id-2379' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1561' column='1' id='type-id-2414'/>
+          <typedef-decl name='_RopeRep' type-id='type-id-2380' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1561' column='1' id='type-id-2415'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeConcatenation' type-id='type-id-2359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1562' column='1' id='type-id-2478'/>
+          <typedef-decl name='_RopeConcatenation' type-id='type-id-2360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1562' column='1' id='type-id-2479'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeLeaf' type-id='type-id-2371' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1563' column='1' id='type-id-2479'/>
+          <typedef-decl name='_RopeLeaf' type-id='type-id-2372' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1563' column='1' id='type-id-2480'/>
         </member-type>
         <member-type access='protected'>
-          <typedef-decl name='_RopeFunction' type-id='type-id-2365' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1564' column='1' id='type-id-2480'/>
+          <typedef-decl name='_RopeFunction' type-id='type-id-2366' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1564' column='1' id='type-id-2481'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_min_len' type-id='type-id-2351' mangled-name='_ZN9__gnu_cxx4ropeIwSaIwEE10_S_min_lenE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1754' column='1'/>
+          <var-decl name='_S_min_len' type-id='type-id-2352' mangled-name='_ZN9__gnu_cxx4ropeIwSaIwEE10_S_min_lenE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1754' column='1'/>
         </data-member>
         <member-function access='protected' static='yes'>
           <function-decl name='_S_fetch' mangled-name='_ZN9__gnu_cxx4ropeIwSaIwEE8_S_fetchEPNS_13_Rope_RopeRepIwS1_EEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='1568' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2415'/>
-            <parameter type-id='type-id-2477'/>
+            <parameter type-id='type-id-2416'/>
+            <parameter type-id='type-id-2478'/>
             <return type-id='type-id-377'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='stdio_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='1920' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='51' column='1' id='type-id-2416'>
+      <class-decl name='stdio_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='1920' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='51' column='1' id='type-id-2417'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-688'/>
         <member-type access='private'>
-          <typedef-decl name='size_t' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='60' column='1' id='type-id-2481'/>
+          <typedef-decl name='size_t' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='60' column='1' id='type-id-2482'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-958'/>
-            <parameter type-id='type-id-2481'/>
+            <parameter type-id='type-id-2482'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
+            <parameter type-id='type-id-2483'/>
             <parameter type-id='type-id-958'/>
-            <parameter type-id='type-id-2481'/>
+            <parameter type-id='type-id-2482'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEC2EiSt13_Ios_Openmodem' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-958'/>
-            <parameter type-id='type-id-2481'/>
+            <parameter type-id='type-id-2482'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEC2EP8_IO_FILESt13_Ios_Openmodem' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
+            <parameter type-id='type-id-2483'/>
             <parameter type-id='type-id-958'/>
-            <parameter type-id='type-id-2481'/>
+            <parameter type-id='type-id-2482'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='fd' mangled-name='_ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEE2fdEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='file' mangled-name='_ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEE4fileEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
-            <return type-id='type-id-2482'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
+            <return type-id='type-id-2483'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2417' is-artificial='yes'/>
+            <parameter type-id='type-id-2418' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='stdio_filebuf&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='1920' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='51' column='1' id='type-id-2418'>
+      <class-decl name='stdio_filebuf&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='1920' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='51' column='1' id='type-id-2419'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-691'/>
         <member-type access='private'>
-          <typedef-decl name='size_t' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='60' column='1' id='type-id-2483'/>
+          <typedef-decl name='size_t' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='60' column='1' id='type-id-2484'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-958'/>
-            <parameter type-id='type-id-2483'/>
+            <parameter type-id='type-id-2484'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
-            <parameter type-id='type-id-958'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <parameter type-id='type-id-2483'/>
+            <parameter type-id='type-id-958'/>
+            <parameter type-id='type-id-2484'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEC2EiSt13_Ios_Openmodem' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-958'/>
-            <parameter type-id='type-id-2483'/>
+            <parameter type-id='type-id-2484'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEC2EP8_IO_FILESt13_Ios_Openmodem' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
-            <parameter type-id='type-id-958'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <parameter type-id='type-id-2483'/>
+            <parameter type-id='type-id-958'/>
+            <parameter type-id='type-id-2484'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='fd' mangled-name='_ZN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEE2fdEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='file' mangled-name='_ZN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEE4fileEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
-            <return type-id='type-id-2482'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
+            <return type-id='type-id-2483'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~stdio_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~stdio_filebuf' mangled-name='_ZN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2419' is-artificial='yes'/>
+            <parameter type-id='type-id-2420' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Rope_RopeSubstring&lt;char, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-2468'/>
-      <class-decl name='_Rope_RopeSubstring&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-2469'/>
-      <class-decl name='char_producer&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-2408'/>
-      <class-decl name='char_producer&lt;wchar_t&gt;' visibility='default' is-declaration-only='yes' id='type-id-2410'/>
+      <class-decl name='_Rope_RopeSubstring&lt;char, std::allocator&lt;char&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-2469'/>
+      <class-decl name='_Rope_RopeSubstring&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-2470'/>
+      <class-decl name='char_producer&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-2409'/>
+      <class-decl name='char_producer&lt;wchar_t&gt;' visibility='default' is-declaration-only='yes' id='type-id-2411'/>
       <namespace-decl name='__detail'>
-        <enum-decl name='_Tag' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='72' column='1' id='type-id-2470'>
+        <enum-decl name='_Tag' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/rope' line='72' column='1' id='type-id-2471'>
           <underlying-type type-id='type-id-37'/>
           <enumerator name='_S_leaf' value='0'/>
           <enumerator name='_S_concat' value='1'/>
@@ -29888,106 +29894,106 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/globals_io.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='1920' id='type-id-2484'>
-      <subrange length='240' type-id='type-id-176' id='type-id-2485'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='1920' id='type-id-2485'>
+      <subrange length='240' type-id='type-id-176' id='type-id-2486'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='2176' id='type-id-2486'>
-      <subrange length='272' type-id='type-id-176' id='type-id-2487'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='2176' id='type-id-2487'>
+      <subrange length='272' type-id='type-id-176' id='type-id-2488'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='2240' id='type-id-2488'>
-      <subrange length='280' type-id='type-id-176' id='type-id-2489'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='2240' id='type-id-2489'>
+      <subrange length='280' type-id='type-id-176' id='type-id-2490'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='640' id='type-id-2490'>
-      <subrange length='80' type-id='type-id-176' id='type-id-2491'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='640' id='type-id-2491'>
+      <subrange length='80' type-id='type-id-176' id='type-id-2492'/>
     </array-type-def>
-    <pointer-type-def type-id='type-id-2492' size-in-bits='64' id='type-id-2493'/>
+    <pointer-type-def type-id='type-id-2493' size-in-bits='64' id='type-id-2494'/>
     <namespace-decl name='std'>
-      <typedef-decl name='fake_istream' type-id='type-id-2488' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='53' column='1' id='type-id-2494'/>
-      <typedef-decl name='fake_ostream' type-id='type-id-2486' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='55' column='1' id='type-id-2495'/>
-      <typedef-decl name='fake_wistream' type-id='type-id-2488' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='63' column='1' id='type-id-2496'/>
-      <typedef-decl name='fake_wostream' type-id='type-id-2486' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='65' column='1' id='type-id-2497'/>
-      <var-decl name='cin' type-id='type-id-2494' mangled-name='_ZSt3cin' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='57' column='1' elf-symbol-id='_ZSt3cin@@GLIBCXX_3.4'/>
-      <var-decl name='cout' type-id='type-id-2495' mangled-name='_ZSt4cout' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='58' column='1' elf-symbol-id='_ZSt4cout@@GLIBCXX_3.4'/>
-      <var-decl name='cerr' type-id='type-id-2495' mangled-name='_ZSt4cerr' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='59' column='1' elf-symbol-id='_ZSt4cerr@@GLIBCXX_3.4'/>
-      <var-decl name='clog' type-id='type-id-2495' mangled-name='_ZSt4clog' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='60' column='1' elf-symbol-id='_ZSt4clog@@GLIBCXX_3.4'/>
-      <var-decl name='wcin' type-id='type-id-2496' mangled-name='_ZSt4wcin' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='67' column='1' elf-symbol-id='_ZSt4wcin@@GLIBCXX_3.4'/>
-      <var-decl name='wcout' type-id='type-id-2497' mangled-name='_ZSt5wcout' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='68' column='1' elf-symbol-id='_ZSt5wcout@@GLIBCXX_3.4'/>
-      <var-decl name='wcerr' type-id='type-id-2497' mangled-name='_ZSt5wcerr' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='69' column='1' elf-symbol-id='_ZSt5wcerr@@GLIBCXX_3.4'/>
-      <var-decl name='wclog' type-id='type-id-2497' mangled-name='_ZSt5wclog' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='70' column='1' elf-symbol-id='_ZSt5wclog@@GLIBCXX_3.4'/>
+      <typedef-decl name='fake_istream' type-id='type-id-2489' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='53' column='1' id='type-id-2495'/>
+      <typedef-decl name='fake_ostream' type-id='type-id-2487' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='55' column='1' id='type-id-2496'/>
+      <typedef-decl name='fake_wistream' type-id='type-id-2489' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='63' column='1' id='type-id-2497'/>
+      <typedef-decl name='fake_wostream' type-id='type-id-2487' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='65' column='1' id='type-id-2498'/>
+      <var-decl name='cin' type-id='type-id-2495' mangled-name='_ZSt3cin' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='57' column='1' elf-symbol-id='_ZSt3cin@@GLIBCXX_3.4'/>
+      <var-decl name='cout' type-id='type-id-2496' mangled-name='_ZSt4cout' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='58' column='1' elf-symbol-id='_ZSt4cout@@GLIBCXX_3.4'/>
+      <var-decl name='cerr' type-id='type-id-2496' mangled-name='_ZSt4cerr' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='59' column='1' elf-symbol-id='_ZSt4cerr@@GLIBCXX_3.4'/>
+      <var-decl name='clog' type-id='type-id-2496' mangled-name='_ZSt4clog' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='60' column='1' elf-symbol-id='_ZSt4clog@@GLIBCXX_3.4'/>
+      <var-decl name='wcin' type-id='type-id-2497' mangled-name='_ZSt4wcin' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='67' column='1' elf-symbol-id='_ZSt4wcin@@GLIBCXX_3.4'/>
+      <var-decl name='wcout' type-id='type-id-2498' mangled-name='_ZSt5wcout' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='68' column='1' elf-symbol-id='_ZSt5wcout@@GLIBCXX_3.4'/>
+      <var-decl name='wcerr' type-id='type-id-2498' mangled-name='_ZSt5wcerr' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='69' column='1' elf-symbol-id='_ZSt5wcerr@@GLIBCXX_3.4'/>
+      <var-decl name='wclog' type-id='type-id-2498' mangled-name='_ZSt5wclog' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='70' column='1' elf-symbol-id='_ZSt5wclog@@GLIBCXX_3.4'/>
     </namespace-decl>
     <namespace-decl name='__gnu_internal'>
-      <typedef-decl name='fake_stdiobuf' type-id='type-id-2490' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='83' column='1' id='type-id-2498'/>
-      <typedef-decl name='fake_filebuf' type-id='type-id-2484' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='89' column='1' id='type-id-2499'/>
-      <typedef-decl name='fake_wstdiobuf' type-id='type-id-2490' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='96' column='1' id='type-id-2500'/>
-      <typedef-decl name='fake_wfilebuf' type-id='type-id-2484' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='102' column='1' id='type-id-2501'/>
-      <var-decl name='buf_cout_sync' type-id='type-id-2498' mangled-name='_ZN14__gnu_internal13buf_cout_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='85' column='1'/>
-      <var-decl name='buf_cin_sync' type-id='type-id-2498' mangled-name='_ZN14__gnu_internal12buf_cin_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='86' column='1'/>
-      <var-decl name='buf_cerr_sync' type-id='type-id-2498' mangled-name='_ZN14__gnu_internal13buf_cerr_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='87' column='1'/>
-      <var-decl name='buf_cout' type-id='type-id-2499' mangled-name='_ZN14__gnu_internal8buf_coutE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='91' column='1'/>
-      <var-decl name='buf_cin' type-id='type-id-2499' mangled-name='_ZN14__gnu_internal7buf_cinE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='92' column='1'/>
-      <var-decl name='buf_cerr' type-id='type-id-2499' mangled-name='_ZN14__gnu_internal8buf_cerrE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='93' column='1'/>
-      <var-decl name='buf_wcout_sync' type-id='type-id-2500' mangled-name='_ZN14__gnu_internal14buf_wcout_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='98' column='1'/>
-      <var-decl name='buf_wcin_sync' type-id='type-id-2500' mangled-name='_ZN14__gnu_internal13buf_wcin_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='99' column='1'/>
-      <var-decl name='buf_wcerr_sync' type-id='type-id-2500' mangled-name='_ZN14__gnu_internal14buf_wcerr_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='100' column='1'/>
-      <var-decl name='buf_wcout' type-id='type-id-2501' mangled-name='_ZN14__gnu_internal9buf_wcoutE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='104' column='1'/>
-      <var-decl name='buf_wcin' type-id='type-id-2501' mangled-name='_ZN14__gnu_internal8buf_wcinE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='105' column='1'/>
-      <var-decl name='buf_wcerr' type-id='type-id-2501' mangled-name='_ZN14__gnu_internal9buf_wcerrE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='106' column='1'/>
+      <typedef-decl name='fake_stdiobuf' type-id='type-id-2491' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='83' column='1' id='type-id-2499'/>
+      <typedef-decl name='fake_filebuf' type-id='type-id-2485' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='89' column='1' id='type-id-2500'/>
+      <typedef-decl name='fake_wstdiobuf' type-id='type-id-2491' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='96' column='1' id='type-id-2501'/>
+      <typedef-decl name='fake_wfilebuf' type-id='type-id-2485' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='102' column='1' id='type-id-2502'/>
+      <var-decl name='buf_cout_sync' type-id='type-id-2499' mangled-name='_ZN14__gnu_internal13buf_cout_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='85' column='1'/>
+      <var-decl name='buf_cin_sync' type-id='type-id-2499' mangled-name='_ZN14__gnu_internal12buf_cin_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='86' column='1'/>
+      <var-decl name='buf_cerr_sync' type-id='type-id-2499' mangled-name='_ZN14__gnu_internal13buf_cerr_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='87' column='1'/>
+      <var-decl name='buf_cout' type-id='type-id-2500' mangled-name='_ZN14__gnu_internal8buf_coutE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='91' column='1'/>
+      <var-decl name='buf_cin' type-id='type-id-2500' mangled-name='_ZN14__gnu_internal7buf_cinE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='92' column='1'/>
+      <var-decl name='buf_cerr' type-id='type-id-2500' mangled-name='_ZN14__gnu_internal8buf_cerrE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='93' column='1'/>
+      <var-decl name='buf_wcout_sync' type-id='type-id-2501' mangled-name='_ZN14__gnu_internal14buf_wcout_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='98' column='1'/>
+      <var-decl name='buf_wcin_sync' type-id='type-id-2501' mangled-name='_ZN14__gnu_internal13buf_wcin_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='99' column='1'/>
+      <var-decl name='buf_wcerr_sync' type-id='type-id-2501' mangled-name='_ZN14__gnu_internal14buf_wcerr_syncE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='100' column='1'/>
+      <var-decl name='buf_wcout' type-id='type-id-2502' mangled-name='_ZN14__gnu_internal9buf_wcoutE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='104' column='1'/>
+      <var-decl name='buf_wcin' type-id='type-id-2502' mangled-name='_ZN14__gnu_internal8buf_wcinE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='105' column='1'/>
+      <var-decl name='buf_wcerr' type-id='type-id-2502' mangled-name='_ZN14__gnu_internal9buf_wcerrE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='106' column='1'/>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='stdio_sync_filebuf&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='57' column='1' id='type-id-2492'>
+      <class-decl name='stdio_sync_filebuf&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='57' column='1' id='type-id-2493'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-731'/>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='63' column='1' id='type-id-2502'/>
+          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='63' column='1' id='type-id-2503'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='512'>
-          <var-decl name='_M_file' type-id='type-id-2503' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='69' column='1'/>
+          <var-decl name='_M_file' type-id='type-id-2504' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='69' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='576'>
-          <var-decl name='_M_unget_buf' type-id='type-id-2502' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='73' column='1'/>
+          <var-decl name='_M_unget_buf' type-id='type-id-2503' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='73' column='1'/>
         </data-member>
         <member-function access='protected'>
           <function-decl name='syncgetc' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE8syncgetcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <return type-id='type-id-2502'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <return type-id='type-id-2503'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='syncputc' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE8syncputcEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <parameter type-id='type-id-2502'/>
-            <return type-id='type-id-2502'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <parameter type-id='type-id-2503'/>
+            <return type-id='type-id-2503'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_sync_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <parameter type-id='type-id-2483'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='syncungetc' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE10syncungetcEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='233' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <parameter type-id='type-id-2502'/>
-            <return type-id='type-id-2502'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <parameter type-id='type-id-2503'/>
+            <return type-id='type-id-2503'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_sync_filebuf' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC2EP8_IO_FILE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC2EP8_IO_FILE@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <parameter type-id='type-id-2483'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='file' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4fileEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4fileEv@@GLIBCXX_3.4.2'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <return type-id='type-id-2503'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <return type-id='type-id-2504'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='4'>
           <function-decl name='seekoff' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
             <parameter type-id='type-id-888'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
@@ -29996,7 +30002,7 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='5'>
           <function-decl name='seekpos' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
             <parameter type-id='type-id-886'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-886'/>
@@ -30004,13 +30010,13 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='6'>
           <function-decl name='sync' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4syncEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4syncEv@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='8'>
           <function-decl name='xsgetn' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsgetnEPwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsgetnEPwl@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
@@ -30018,26 +30024,26 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='9'>
           <function-decl name='underflow' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9underflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9underflowEv@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <return type-id='type-id-2502'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <return type-id='type-id-2503'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='10'>
           <function-decl name='uflow' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE5uflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE5uflowEv@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <return type-id='type-id-2502'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <return type-id='type-id-2503'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='11'>
           <function-decl name='pbackfail' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9pbackfailEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9pbackfailEj@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <parameter type-id='type-id-2502'/>
-            <return type-id='type-id-2502'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <parameter type-id='type-id-2503'/>
+            <return type-id='type-id-2503'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='12'>
           <function-decl name='xsputn' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsputnEPKwl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='265' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsputnEPKwl@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
@@ -30045,83 +30051,83 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='13'>
           <function-decl name='overflow' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE8overflowEj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE8overflowEj@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2493' is-artificial='yes'/>
-            <parameter type-id='type-id-2502'/>
-            <return type-id='type-id-2502'/>
+            <parameter type-id='type-id-2494' is-artificial='yes'/>
+            <parameter type-id='type-id-2503'/>
+            <return type-id='type-id-2503'/>
           </function-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/hash_tr1.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2504' const='yes' id='type-id-2505'/>
-    <pointer-type-def type-id='type-id-2505' size-in-bits='64' id='type-id-2506'/>
-    <qualified-type-def type-id='type-id-2507' const='yes' id='type-id-2508'/>
-    <pointer-type-def type-id='type-id-2508' size-in-bits='64' id='type-id-2509'/>
-    <qualified-type-def type-id='type-id-2510' const='yes' id='type-id-2511'/>
-    <pointer-type-def type-id='type-id-2511' size-in-bits='64' id='type-id-2512'/>
-    <qualified-type-def type-id='type-id-2513' const='yes' id='type-id-2514'/>
-    <pointer-type-def type-id='type-id-2514' size-in-bits='64' id='type-id-2515'/>
-    <qualified-type-def type-id='type-id-2516' const='yes' id='type-id-2517'/>
-    <pointer-type-def type-id='type-id-2517' size-in-bits='64' id='type-id-2518'/>
+    <qualified-type-def type-id='type-id-2505' const='yes' id='type-id-2506'/>
+    <pointer-type-def type-id='type-id-2506' size-in-bits='64' id='type-id-2507'/>
+    <qualified-type-def type-id='type-id-2508' const='yes' id='type-id-2509'/>
+    <pointer-type-def type-id='type-id-2509' size-in-bits='64' id='type-id-2510'/>
+    <qualified-type-def type-id='type-id-2511' const='yes' id='type-id-2512'/>
+    <pointer-type-def type-id='type-id-2512' size-in-bits='64' id='type-id-2513'/>
+    <qualified-type-def type-id='type-id-2514' const='yes' id='type-id-2515'/>
+    <pointer-type-def type-id='type-id-2515' size-in-bits='64' id='type-id-2516'/>
+    <qualified-type-def type-id='type-id-2517' const='yes' id='type-id-2518'/>
+    <pointer-type-def type-id='type-id-2518' size-in-bits='64' id='type-id-2519'/>
     <namespace-decl name='std'>
-      <class-decl name='unary_function&lt;const std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&amp;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2519'/>
-      <class-decl name='unary_function&lt;const std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;&amp;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2520'/>
-      <class-decl name='unary_function&lt;long double, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2521'/>
-      <class-decl name='unary_function&lt;std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2522'/>
-      <class-decl name='unary_function&lt;std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2523'/>
+      <class-decl name='unary_function&lt;const std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&amp;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2520'/>
+      <class-decl name='unary_function&lt;const std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;&amp;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2521'/>
+      <class-decl name='unary_function&lt;long double, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2522'/>
+      <class-decl name='unary_function&lt;std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2523'/>
+      <class-decl name='unary_function&lt;std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;, long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_function.h' line='103' column='1' id='type-id-2524'/>
       <namespace-decl name='tr1'>
-        <class-decl name='hash&lt;const std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2504'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2519'/>
+        <class-decl name='hash&lt;const std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2505'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2520'/>
           <member-function access='public' const='yes'>
             <function-decl name='operator()' mangled-name='_ZNKSt3tr14hashIRKSsEclES2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt3tr14hashIRKSsEclES2_@@GLIBCXX_3.4.10'>
-              <parameter type-id='type-id-2506' is-artificial='yes'/>
+              <parameter type-id='type-id-2507' is-artificial='yes'/>
               <parameter type-id='type-id-735'/>
               <return type-id='type-id-91'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='hash&lt;const std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2507'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2520'/>
+        <class-decl name='hash&lt;const std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2508'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2521'/>
           <member-function access='public' const='yes'>
             <function-decl name='operator()' mangled-name='_ZNKSt3tr14hashIRKSbIwSt11char_traitsIwESaIwEEEclES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt3tr14hashIRKSbIwSt11char_traitsIwESaIwEEEclES6_@@GLIBCXX_3.4.10'>
-              <parameter type-id='type-id-2509' is-artificial='yes'/>
+              <parameter type-id='type-id-2510' is-artificial='yes'/>
               <parameter type-id='type-id-743'/>
               <return type-id='type-id-91'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='hash&lt;long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2510'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2521'/>
+        <class-decl name='hash&lt;long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2511'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2522'/>
           <member-function access='public' const='yes'>
             <function-decl name='operator()' mangled-name='_ZNKSt3tr14hashIeEclEe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt3tr14hashIeEclEe@@GLIBCXX_3.4.10'>
-              <parameter type-id='type-id-2512' is-artificial='yes'/>
+              <parameter type-id='type-id-2513' is-artificial='yes'/>
               <parameter type-id='type-id-375'/>
               <return type-id='type-id-91'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='hash&lt;std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2513'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2522'/>
+        <class-decl name='hash&lt;std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2514'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2523'/>
           <member-function access='public' const='yes'>
             <function-decl name='operator()' mangled-name='_ZNKSt3tr14hashISsEclESs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt3tr14hashISsEclESs@@GLIBCXX_3.4.10'>
-              <parameter type-id='type-id-2515' is-artificial='yes'/>
+              <parameter type-id='type-id-2516' is-artificial='yes'/>
               <parameter type-id='type-id-360'/>
               <return type-id='type-id-91'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='hash&lt;std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2516'>
-          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2523'/>
+        <class-decl name='hash&lt;std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='45' column='1' id='type-id-2517'>
+          <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2524'/>
           <member-function access='public' const='yes'>
             <function-decl name='operator()' mangled-name='_ZNKSt3tr14hashISbIwSt11char_traitsIwESaIwEEEclES4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt3tr14hashISbIwSt11char_traitsIwESaIwEEEclES4_@@GLIBCXX_3.4.10'>
-              <parameter type-id='type-id-2518' is-artificial='yes'/>
+              <parameter type-id='type-id-2519' is-artificial='yes'/>
               <parameter type-id='type-id-361'/>
               <return type-id='type-id-91'/>
             </function-decl>
           </member-function>
         </class-decl>
-        <class-decl name='_Fnv_hash_base&lt;8ul&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='121' column='1' id='type-id-2524'>
+        <class-decl name='_Fnv_hash_base&lt;8ul&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='121' column='1' id='type-id-2525'>
           <member-function access='public' static='yes'>
             <function-decl name='hash&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
               <parameter type-id='type-id-4'/>
@@ -30141,66 +30147,66 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/hashtable_tr1.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-471' size-in-bits='19520' id='type-id-1708'>
-      <subrange length='305' type-id='type-id-176' id='type-id-2525'/>
+    <array-type-def dimensions='1' type-id='type-id-471' size-in-bits='19520' id='type-id-1709'>
+      <subrange length='305' type-id='type-id-176' id='type-id-2526'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-44' size-in-bits='19520' id='type-id-2526'>
-      <subrange length='305' type-id='type-id-176' id='type-id-2525'/>
+    <array-type-def dimensions='1' type-id='type-id-44' size-in-bits='19520' id='type-id-2527'>
+      <subrange length='305' type-id='type-id-176' id='type-id-2526'/>
     </array-type-def>
     <namespace-decl name='std'>
       <namespace-decl name='tr1'>
         <namespace-decl name='__detail'>
-          <var-decl name='__prime_list' type-id='type-id-1708' mangled-name='_ZNSt3tr18__detail12__prime_listE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/../shared/hashtable-aux.cc' line='30' column='1' elf-symbol-id='_ZNSt3tr18__detail12__prime_listE@@GLIBCXX_3.4.10'/>
+          <var-decl name='__prime_list' type-id='type-id-1709' mangled-name='_ZNSt3tr18__detail12__prime_listE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/../shared/hashtable-aux.cc' line='30' column='1' elf-symbol-id='_ZNSt3tr18__detail12__prime_listE@@GLIBCXX_3.4.10'/>
         </namespace-decl>
       </namespace-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
     <reference-type-def kind='lvalue' type-id='type-id-707' size-in-bits='64' id='type-id-997'/>
-    <qualified-type-def type-id='type-id-985' const='yes' id='type-id-2527'/>
-    <pointer-type-def type-id='type-id-2527' size-in-bits='64' id='type-id-992'/>
-    <qualified-type-def type-id='type-id-989' const='yes' id='type-id-2528'/>
-    <pointer-type-def type-id='type-id-2528' size-in-bits='64' id='type-id-994'/>
-    <qualified-type-def type-id='type-id-987' const='yes' id='type-id-2529'/>
-    <pointer-type-def type-id='type-id-2529' size-in-bits='64' id='type-id-993'/>
+    <qualified-type-def type-id='type-id-985' const='yes' id='type-id-2528'/>
+    <pointer-type-def type-id='type-id-2528' size-in-bits='64' id='type-id-992'/>
+    <qualified-type-def type-id='type-id-989' const='yes' id='type-id-2529'/>
+    <pointer-type-def type-id='type-id-2529' size-in-bits='64' id='type-id-994'/>
+    <qualified-type-def type-id='type-id-987' const='yes' id='type-id-2530'/>
+    <pointer-type-def type-id='type-id-2530' size-in-bits='64' id='type-id-993'/>
     <reference-type-def kind='lvalue' type-id='type-id-710' size-in-bits='64' id='type-id-1010'/>
-    <qualified-type-def type-id='type-id-1000' const='yes' id='type-id-2530'/>
-    <pointer-type-def type-id='type-id-2530' size-in-bits='64' id='type-id-1007'/>
-    <qualified-type-def type-id='type-id-1004' const='yes' id='type-id-2531'/>
-    <pointer-type-def type-id='type-id-2531' size-in-bits='64' id='type-id-1009'/>
-    <qualified-type-def type-id='type-id-1002' const='yes' id='type-id-2532'/>
-    <pointer-type-def type-id='type-id-2532' size-in-bits='64' id='type-id-1008'/>
-    <qualified-type-def type-id='type-id-990' const='yes' id='type-id-2533'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2533' size-in-bits='64' id='type-id-2534'/>
-    <qualified-type-def type-id='type-id-1005' const='yes' id='type-id-2535'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2535' size-in-bits='64' id='type-id-2536'/>
-    <qualified-type-def type-id='type-id-988' const='yes' id='type-id-2537'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2537' size-in-bits='64' id='type-id-2538'/>
-    <qualified-type-def type-id='type-id-1003' const='yes' id='type-id-2539'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2539' size-in-bits='64' id='type-id-2540'/>
+    <qualified-type-def type-id='type-id-1000' const='yes' id='type-id-2531'/>
+    <pointer-type-def type-id='type-id-2531' size-in-bits='64' id='type-id-1007'/>
+    <qualified-type-def type-id='type-id-1004' const='yes' id='type-id-2532'/>
+    <pointer-type-def type-id='type-id-2532' size-in-bits='64' id='type-id-1009'/>
+    <qualified-type-def type-id='type-id-1002' const='yes' id='type-id-2533'/>
+    <pointer-type-def type-id='type-id-2533' size-in-bits='64' id='type-id-1008'/>
+    <qualified-type-def type-id='type-id-990' const='yes' id='type-id-2534'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2534' size-in-bits='64' id='type-id-2535'/>
+    <qualified-type-def type-id='type-id-1005' const='yes' id='type-id-2536'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2536' size-in-bits='64' id='type-id-2537'/>
+    <qualified-type-def type-id='type-id-988' const='yes' id='type-id-2538'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2538' size-in-bits='64' id='type-id-2539'/>
+    <qualified-type-def type-id='type-id-1003' const='yes' id='type-id-2540'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2540' size-in-bits='64' id='type-id-2541'/>
     <reference-type-def kind='lvalue' type-id='type-id-706' size-in-bits='64' id='type-id-998'/>
     <reference-type-def kind='lvalue' type-id='type-id-709' size-in-bits='64' id='type-id-1011'/>
     <namespace-decl name='std'>
       <function-decl name='__check_facet&lt;std::ctype&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2340'/>
-        <return type-id='type-id-2541'/>
+        <parameter type-id='type-id-2341'/>
+        <return type-id='type-id-2542'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-1022' size-in-bits='1024' id='type-id-1030'>
-      <subrange length='8' type-id='type-id-176' id='type-id-1829'/>
+    <array-type-def dimensions='1' type-id='type-id-1022' size-in-bits='1024' id='type-id-1031'>
+      <subrange length='8' type-id='type-id-176' id='type-id-1830'/>
     </array-type-def>
-    <reference-type-def kind='lvalue' type-id='type-id-2191' size-in-bits='64' id='type-id-1033'/>
-    <reference-type-def kind='lvalue' type-id='type-id-20' size-in-bits='64' id='type-id-1060'/>
-    <reference-type-def kind='lvalue' type-id='type-id-983' size-in-bits='64' id='type-id-2542'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2192' size-in-bits='64' id='type-id-1034'/>
+    <reference-type-def kind='lvalue' type-id='type-id-20' size-in-bits='64' id='type-id-1061'/>
+    <reference-type-def kind='lvalue' type-id='type-id-983' size-in-bits='64' id='type-id-2543'/>
     <pointer-type-def type-id='type-id-1020' size-in-bits='64' id='type-id-1021'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1022' size-in-bits='64' id='type-id-1034'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1022' size-in-bits='64' id='type-id-1035'/>
     <pointer-type-def type-id='type-id-1022' size-in-bits='64' id='type-id-1023'/>
-    <pointer-type-def type-id='type-id-2543' size-in-bits='64' id='type-id-1019'/>
-    <reference-type-def kind='lvalue' type-id='type-id-34' size-in-bits='64' id='type-id-1065'/>
+    <pointer-type-def type-id='type-id-2544' size-in-bits='64' id='type-id-1019'/>
+    <reference-type-def kind='lvalue' type-id='type-id-34' size-in-bits='64' id='type-id-1066'/>
     <namespace-decl name='std'>
-      <class-decl name='numeric_limits&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='982' column='1' id='type-id-2544'>
+      <class-decl name='numeric_limits&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='982' column='1' id='type-id-2545'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIiE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='984' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -30247,7 +30253,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIiE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1020' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIiE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1022' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIiE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1022' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIiE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1023' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -30268,7 +30274,7 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIiE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1042' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIiE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1044' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIiE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1044' column='1' elf-symbol-id='_ZNSt14numeric_limitsIiE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='public' static='yes'>
           <function-decl name='max' mangled-name='_ZNSt14numeric_limitsIiE3maxEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='990' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -30277,40 +30283,40 @@ 
         </member-function>
       </class-decl>
     </namespace-decl>
-    <function-type size-in-bits='64' id='type-id-2543'>
+    <function-type size-in-bits='64' id='type-id-2544'>
       <parameter type-id='type-id-1017'/>
-      <parameter type-id='type-id-2542'/>
+      <parameter type-id='type-id-2543'/>
       <parameter type-id='type-id-6'/>
       <return type-id='type-id-5'/>
     </function-type>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios_failure.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1012' const='yes' id='type-id-2545'/>
-    <pointer-type-def type-id='type-id-2545' size-in-bits='64' id='type-id-1014'/>
+    <qualified-type-def type-id='type-id-1012' const='yes' id='type-id-2546'/>
+    <pointer-type-def type-id='type-id-2546' size-in-bits='64' id='type-id-1014'/>
     <pointer-type-def type-id='type-id-1012' size-in-bits='64' id='type-id-1013'/>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios_init.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-2546' size-in-bits='64' id='type-id-2547'/>
-    <qualified-type-def type-id='type-id-1016' const='yes' id='type-id-2548'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2548' size-in-bits='64' id='type-id-2549'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1016' size-in-bits='64' id='type-id-2550'/>
-    <pointer-type-def type-id='type-id-2551' size-in-bits='64' id='type-id-2482'/>
-    <pointer-type-def type-id='type-id-1038' size-in-bits='64' id='type-id-1048'/>
-    <pointer-type-def type-id='type-id-1069' size-in-bits='64' id='type-id-1076'/>
-    <pointer-type-def type-id='type-id-2261' size-in-bits='64' id='type-id-2267'/>
-    <pointer-type-def type-id='type-id-2275' size-in-bits='64' id='type-id-2281'/>
-    <pointer-type-def type-id='type-id-1024' size-in-bits='64' id='type-id-1025'/>
+    <pointer-type-def type-id='type-id-2547' size-in-bits='64' id='type-id-2548'/>
+    <qualified-type-def type-id='type-id-1016' const='yes' id='type-id-2549'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2549' size-in-bits='64' id='type-id-2550'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1016' size-in-bits='64' id='type-id-2551'/>
+    <pointer-type-def type-id='type-id-2552' size-in-bits='64' id='type-id-2483'/>
+    <pointer-type-def type-id='type-id-1039' size-in-bits='64' id='type-id-1049'/>
+    <pointer-type-def type-id='type-id-1070' size-in-bits='64' id='type-id-1077'/>
+    <pointer-type-def type-id='type-id-2262' size-in-bits='64' id='type-id-2268'/>
+    <pointer-type-def type-id='type-id-2276' size-in-bits='64' id='type-id-2282'/>
+    <pointer-type-def type-id='type-id-1025' size-in-bits='64' id='type-id-1026'/>
     <namespace-decl name='std'>
-      <typedef-decl name='__c_file' type-id='type-id-643' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++io.h' line='46' column='1' id='type-id-2551'/>
+      <typedef-decl name='__c_file' type-id='type-id-643' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++io.h' line='46' column='1' id='type-id-2552'/>
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1016'/>
         <parameter type-id='type-id-1016'/>
         <return type-id='type-id-1016'/>
       </function-decl>
       <function-decl name='operator|=' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2550'/>
+        <parameter type-id='type-id-2551'/>
         <parameter type-id='type-id-1016'/>
-        <return type-id='type-id-2549'/>
+        <return type-id='type-id-2550'/>
       </function-decl>
       <function-decl name='operator&amp;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-895'/>
@@ -30319,60 +30325,60 @@ 
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='stdio_sync_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='57' column='1' id='type-id-2546'>
+      <class-decl name='stdio_sync_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='640' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='57' column='1' id='type-id-2547'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-728'/>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='63' column='1' id='type-id-2552'/>
+          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='63' column='1' id='type-id-2553'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='512'>
-          <var-decl name='_M_file' type-id='type-id-2503' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='69' column='1'/>
+          <var-decl name='_M_file' type-id='type-id-2504' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='69' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='576'>
-          <var-decl name='_M_unget_buf' type-id='type-id-2552' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='73' column='1'/>
+          <var-decl name='_M_unget_buf' type-id='type-id-2553' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='73' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='stdio_sync_filebuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <parameter type-id='type-id-2483'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='syncgetc' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE8syncgetcEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <return type-id='type-id-2552'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <return type-id='type-id-2553'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='syncungetc' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE10syncungetcEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='200' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <parameter type-id='type-id-2552'/>
-            <return type-id='type-id-2552'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <parameter type-id='type-id-2553'/>
+            <return type-id='type-id-2553'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='syncputc' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE8syncputcEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='205' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <parameter type-id='type-id-2552'/>
-            <return type-id='type-id-2552'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <parameter type-id='type-id-2553'/>
+            <return type-id='type-id-2553'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='stdio_sync_filebuf' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC2EP8_IO_FILE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC2EP8_IO_FILE@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <parameter type-id='type-id-2483'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='file' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4fileEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4fileEv@@GLIBCXX_3.4.2'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <return type-id='type-id-2503'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <return type-id='type-id-2504'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='4'>
           <function-decl name='seekoff' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
             <parameter type-id='type-id-888'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
@@ -30381,7 +30387,7 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='5'>
           <function-decl name='seekpos' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
             <parameter type-id='type-id-886'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-886'/>
@@ -30389,13 +30395,13 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='6'>
           <function-decl name='sync' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4syncEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4syncEv@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='8'>
           <function-decl name='xsgetn' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsgetnEPcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsgetnEPcl@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
@@ -30403,26 +30409,26 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='9'>
           <function-decl name='underflow' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9underflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9underflowEv@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <return type-id='type-id-2552'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <return type-id='type-id-2553'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='10'>
           <function-decl name='uflow' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE5uflowEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE5uflowEv@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <return type-id='type-id-2552'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <return type-id='type-id-2553'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='11'>
           <function-decl name='pbackfail' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9pbackfailEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9pbackfailEi@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <parameter type-id='type-id-2552'/>
-            <return type-id='type-id-2552'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <parameter type-id='type-id-2553'/>
+            <return type-id='type-id-2553'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='12'>
           <function-decl name='xsputn' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsputnEPKcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsputnEPKcl@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
@@ -30430,9 +30436,9 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='13'>
           <function-decl name='overflow' mangled-name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE8overflowEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_sync_filebuf.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE8overflowEi@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2547' is-artificial='yes'/>
-            <parameter type-id='type-id-2552'/>
-            <return type-id='type-id-2552'/>
+            <parameter type-id='type-id-2548' is-artificial='yes'/>
+            <parameter type-id='type-id-2553'/>
+            <return type-id='type-id-2553'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -30441,24 +30447,24 @@ 
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios_locale.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/iostream-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-1300' size-in-bits='64' id='type-id-2553'/>
+    <pointer-type-def type-id='type-id-1301' size-in-bits='64' id='type-id-2554'/>
     <namespace-decl name='std'>
-      <class-decl name='_Setfill&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1' id='type-id-2554'>
+      <class-decl name='_Setfill&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1' id='type-id-2555'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_c' type-id='type-id-188' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Setfill&lt;wchar_t&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1' id='type-id-2555'>
+      <class-decl name='_Setfill&lt;wchar_t&gt;' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1' id='type-id-2556'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_c' type-id='type-id-377' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='basic_iostream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='789' column='1' is-declaration-only='yes' id='type-id-1300'>
+      <class-decl name='basic_iostream&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='789' column='1' is-declaration-only='yes' id='type-id-1301'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-802'/>
-        <base-class access='public' layout-offset-in-bits='128' type-id='type-id-1298'/>
+        <base-class access='public' layout-offset-in-bits='128' type-id='type-id-1299'/>
         <member-function access='private'>
           <function-decl name='basic_iostream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='814' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-811'/>
@@ -30467,7 +30473,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='basic_iostream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='824' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -30475,7 +30481,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_iostream' mangled-name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-811'/>
@@ -30484,7 +30490,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_iostream' mangled-name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-811'/>
@@ -30493,7 +30499,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='basic_iostream' mangled-name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -30501,7 +30507,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='basic_iostream' mangled-name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -30509,7 +30515,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -30517,7 +30523,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' mangled-name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_iostreamIwSt11char_traitsIwEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -30525,7 +30531,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' mangled-name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_iostreamIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -30533,7 +30539,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' mangled-name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14basic_iostreamIwSt11char_traitsIwEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2553' is-artificial='yes'/>
+            <parameter type-id='type-id-2554' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -30543,244 +30549,244 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/istream-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-796' const='yes' id='type-id-2556'/>
-    <pointer-type-def type-id='type-id-2556' size-in-bits='64' id='type-id-1053'/>
-    <qualified-type-def type-id='type-id-1040' const='yes' id='type-id-2557'/>
-    <qualified-type-def type-id='type-id-1036' const='yes' id='type-id-2558'/>
-    <qualified-type-def type-id='type-id-1043' const='yes' id='type-id-2559'/>
+    <qualified-type-def type-id='type-id-796' const='yes' id='type-id-2557'/>
+    <pointer-type-def type-id='type-id-2557' size-in-bits='64' id='type-id-1054'/>
+    <qualified-type-def type-id='type-id-1041' const='yes' id='type-id-2558'/>
+    <qualified-type-def type-id='type-id-1037' const='yes' id='type-id-2559'/>
     <qualified-type-def type-id='type-id-1044' const='yes' id='type-id-2560'/>
-    <qualified-type-def type-id='type-id-802' const='yes' id='type-id-2561'/>
-    <pointer-type-def type-id='type-id-2561' size-in-bits='64' id='type-id-1080'/>
-    <qualified-type-def type-id='type-id-1071' const='yes' id='type-id-2562'/>
-    <qualified-type-def type-id='type-id-1067' const='yes' id='type-id-2563'/>
-    <qualified-type-def type-id='type-id-1074' const='yes' id='type-id-2564'/>
+    <qualified-type-def type-id='type-id-1045' const='yes' id='type-id-2561'/>
+    <qualified-type-def type-id='type-id-802' const='yes' id='type-id-2562'/>
+    <pointer-type-def type-id='type-id-2562' size-in-bits='64' id='type-id-1081'/>
+    <qualified-type-def type-id='type-id-1072' const='yes' id='type-id-2563'/>
+    <qualified-type-def type-id='type-id-1068' const='yes' id='type-id-2564'/>
     <qualified-type-def type-id='type-id-1075' const='yes' id='type-id-2565'/>
-    <qualified-type-def type-id='type-id-2566' const='yes' id='type-id-2567'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2567' size-in-bits='64' id='type-id-2568'/>
-    <pointer-type-def type-id='type-id-2567' size-in-bits='64' id='type-id-2569'/>
-    <qualified-type-def type-id='type-id-2570' const='yes' id='type-id-2571'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2571' size-in-bits='64' id='type-id-2572'/>
-    <pointer-type-def type-id='type-id-2571' size-in-bits='64' id='type-id-2573'/>
-    <pointer-type-def type-id='type-id-2533' size-in-bits='64' id='type-id-2574'/>
-    <pointer-type-def type-id='type-id-2535' size-in-bits='64' id='type-id-2575'/>
-    <qualified-type-def type-id='type-id-2576' const='yes' id='type-id-2577'/>
-    <pointer-type-def type-id='type-id-2577' size-in-bits='64' id='type-id-2578'/>
-    <qualified-type-def type-id='type-id-2579' const='yes' id='type-id-2580'/>
-    <pointer-type-def type-id='type-id-2580' size-in-bits='64' id='type-id-2581'/>
-    <reference-type-def kind='lvalue' type-id='type-id-262' size-in-bits='64' id='type-id-1063'/>
-    <reference-type-def kind='lvalue' type-id='type-id-376' size-in-bits='64' id='type-id-1064'/>
-    <reference-type-def kind='lvalue' type-id='type-id-623' size-in-bits='64' id='type-id-1057'/>
-    <reference-type-def kind='lvalue' type-id='type-id-624' size-in-bits='64' id='type-id-2582'/>
-    <pointer-type-def type-id='type-id-2213' size-in-bits='64' id='type-id-2216'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1039' size-in-bits='64' id='type-id-2583'/>
-    <pointer-type-def type-id='type-id-2584' size-in-bits='64' id='type-id-1051'/>
-    <pointer-type-def type-id='type-id-2585' size-in-bits='64' id='type-id-1050'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1038' size-in-bits='64' id='type-id-1054'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1035' size-in-bits='64' id='type-id-1055'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1070' size-in-bits='64' id='type-id-2586'/>
-    <pointer-type-def type-id='type-id-2587' size-in-bits='64' id='type-id-1079'/>
-    <pointer-type-def type-id='type-id-2588' size-in-bits='64' id='type-id-1078'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1069' size-in-bits='64' id='type-id-1081'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1066' size-in-bits='64' id='type-id-1082'/>
-    <pointer-type-def type-id='type-id-2589' size-in-bits='64' id='type-id-1052'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2566' size-in-bits='64' id='type-id-2590'/>
-    <pointer-type-def type-id='type-id-2566' size-in-bits='64' id='type-id-2591'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2592' size-in-bits='64' id='type-id-2593'/>
-    <pointer-type-def type-id='type-id-2594' size-in-bits='64' id='type-id-2595'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2570' size-in-bits='64' id='type-id-2596'/>
-    <pointer-type-def type-id='type-id-2570' size-in-bits='64' id='type-id-2597'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2598' size-in-bits='64' id='type-id-2599'/>
-    <pointer-type-def type-id='type-id-2600' size-in-bits='64' id='type-id-2601'/>
-    <reference-type-def kind='lvalue' type-id='type-id-81' size-in-bits='64' id='type-id-2602'/>
-    <reference-type-def kind='lvalue' type-id='type-id-39' size-in-bits='64' id='type-id-1059'/>
-    <reference-type-def kind='lvalue' type-id='type-id-627' size-in-bits='64' id='type-id-1058'/>
+    <qualified-type-def type-id='type-id-1076' const='yes' id='type-id-2566'/>
+    <qualified-type-def type-id='type-id-2567' const='yes' id='type-id-2568'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2568' size-in-bits='64' id='type-id-2569'/>
+    <pointer-type-def type-id='type-id-2568' size-in-bits='64' id='type-id-2570'/>
+    <qualified-type-def type-id='type-id-2571' const='yes' id='type-id-2572'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2572' size-in-bits='64' id='type-id-2573'/>
+    <pointer-type-def type-id='type-id-2572' size-in-bits='64' id='type-id-2574'/>
+    <pointer-type-def type-id='type-id-2534' size-in-bits='64' id='type-id-2575'/>
+    <pointer-type-def type-id='type-id-2536' size-in-bits='64' id='type-id-2576'/>
+    <qualified-type-def type-id='type-id-2577' const='yes' id='type-id-2578'/>
+    <pointer-type-def type-id='type-id-2578' size-in-bits='64' id='type-id-2579'/>
+    <qualified-type-def type-id='type-id-2580' const='yes' id='type-id-2581'/>
+    <pointer-type-def type-id='type-id-2581' size-in-bits='64' id='type-id-2582'/>
+    <reference-type-def kind='lvalue' type-id='type-id-262' size-in-bits='64' id='type-id-1064'/>
+    <reference-type-def kind='lvalue' type-id='type-id-376' size-in-bits='64' id='type-id-1065'/>
+    <reference-type-def kind='lvalue' type-id='type-id-623' size-in-bits='64' id='type-id-1058'/>
+    <reference-type-def kind='lvalue' type-id='type-id-624' size-in-bits='64' id='type-id-2583'/>
+    <pointer-type-def type-id='type-id-2214' size-in-bits='64' id='type-id-2217'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1040' size-in-bits='64' id='type-id-2584'/>
+    <pointer-type-def type-id='type-id-2585' size-in-bits='64' id='type-id-1052'/>
+    <pointer-type-def type-id='type-id-2586' size-in-bits='64' id='type-id-1051'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1039' size-in-bits='64' id='type-id-1055'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1036' size-in-bits='64' id='type-id-1056'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1071' size-in-bits='64' id='type-id-2587'/>
+    <pointer-type-def type-id='type-id-2588' size-in-bits='64' id='type-id-1080'/>
+    <pointer-type-def type-id='type-id-2589' size-in-bits='64' id='type-id-1079'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1070' size-in-bits='64' id='type-id-1082'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1067' size-in-bits='64' id='type-id-1083'/>
+    <pointer-type-def type-id='type-id-2590' size-in-bits='64' id='type-id-1053'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2567' size-in-bits='64' id='type-id-2591'/>
+    <pointer-type-def type-id='type-id-2567' size-in-bits='64' id='type-id-2592'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2593' size-in-bits='64' id='type-id-2594'/>
+    <pointer-type-def type-id='type-id-2595' size-in-bits='64' id='type-id-2596'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2571' size-in-bits='64' id='type-id-2597'/>
+    <pointer-type-def type-id='type-id-2571' size-in-bits='64' id='type-id-2598'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2599' size-in-bits='64' id='type-id-2600'/>
+    <pointer-type-def type-id='type-id-2601' size-in-bits='64' id='type-id-2602'/>
+    <reference-type-def kind='lvalue' type-id='type-id-81' size-in-bits='64' id='type-id-2603'/>
+    <reference-type-def kind='lvalue' type-id='type-id-39' size-in-bits='64' id='type-id-1060'/>
+    <reference-type-def kind='lvalue' type-id='type-id-627' size-in-bits='64' id='type-id-1059'/>
     <namespace-decl name='std'>
-      <typedef-decl name='wstreampos' type-id='type-id-2603' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='232' column='1' id='type-id-893'/>
-      <class-decl name='istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='52' column='1' id='type-id-2566'>
+      <typedef-decl name='wstreampos' type-id='type-id-2604' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='232' column='1' id='type-id-893'/>
+      <class-decl name='istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='52' column='1' id='type-id-2567'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-940'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='66' column='1' id='type-id-2604'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='66' column='1' id='type-id-2605'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='68' column='1' id='type-id-2605'/>
+          <typedef-decl name='int_type' type-id='type-id-754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='68' column='1' id='type-id-2606'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='69' column='1' id='type-id-2594'/>
+          <typedef-decl name='streambuf_type' type-id='type-id-728' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='69' column='1' id='type-id-2595'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='istream_type' type-id='type-id-796' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='70' column='1' id='type-id-2592'/>
+          <typedef-decl name='istream_type' type-id='type-id-796' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='70' column='1' id='type-id-2593'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sbuf' type-id='type-id-2595' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='99' column='1'/>
+          <var-decl name='_M_sbuf' type-id='type-id-2596' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='99' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_c' type-id='type-id-2605' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='100' column='1'/>
+          <var-decl name='_M_c' type-id='type-id-2606' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='100' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='istreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2591' is-artificial='yes'/>
+            <parameter type-id='type-id-2592' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='istreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2591' is-artificial='yes'/>
-            <parameter type-id='type-id-2593'/>
+            <parameter type-id='type-id-2592' is-artificial='yes'/>
+            <parameter type-id='type-id-2594'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='istreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2591' is-artificial='yes'/>
-            <parameter type-id='type-id-2595'/>
+            <parameter type-id='type-id-2592' is-artificial='yes'/>
+            <parameter type-id='type-id-2596'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator*' mangled-name='_ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2569' is-artificial='yes'/>
-            <return type-id='type-id-2604'/>
+            <parameter type-id='type-id-2570' is-artificial='yes'/>
+            <return type-id='type-id-2605'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_get' mangled-name='_ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE6_M_getEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2569' is-artificial='yes'/>
-            <return type-id='type-id-2605'/>
+            <parameter type-id='type-id-2570' is-artificial='yes'/>
+            <return type-id='type-id-2606'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2591' is-artificial='yes'/>
-            <return type-id='type-id-2590'/>
+            <parameter type-id='type-id-2592' is-artificial='yes'/>
+            <return type-id='type-id-2591'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='equal' mangled-name='_ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE5equalERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2569' is-artificial='yes'/>
-            <parameter type-id='type-id-2568'/>
+            <parameter type-id='type-id-2570' is-artificial='yes'/>
+            <parameter type-id='type-id-2569'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_at_eof' mangled-name='_ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE9_M_at_eofEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2569' is-artificial='yes'/>
+            <parameter type-id='type-id-2570' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='52' column='1' id='type-id-2570'>
+      <class-decl name='istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='52' column='1' id='type-id-2571'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-941'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='66' column='1' id='type-id-2606'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='66' column='1' id='type-id-2607'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='68' column='1' id='type-id-2607'/>
+          <typedef-decl name='int_type' type-id='type-id-761' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='68' column='1' id='type-id-2608'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='69' column='1' id='type-id-2600'/>
+          <typedef-decl name='streambuf_type' type-id='type-id-731' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='69' column='1' id='type-id-2601'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='istream_type' type-id='type-id-802' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='70' column='1' id='type-id-2598'/>
+          <typedef-decl name='istream_type' type-id='type-id-802' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='70' column='1' id='type-id-2599'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sbuf' type-id='type-id-2601' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='99' column='1'/>
+          <var-decl name='_M_sbuf' type-id='type-id-2602' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='99' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_c' type-id='type-id-2607' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='100' column='1'/>
+          <var-decl name='_M_c' type-id='type-id-2608' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='100' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='istreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2597' is-artificial='yes'/>
+            <parameter type-id='type-id-2598' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='istreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2597' is-artificial='yes'/>
-            <parameter type-id='type-id-2599'/>
+            <parameter type-id='type-id-2598' is-artificial='yes'/>
+            <parameter type-id='type-id-2600'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='istreambuf_iterator' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2597' is-artificial='yes'/>
-            <parameter type-id='type-id-2601'/>
+            <parameter type-id='type-id-2598' is-artificial='yes'/>
+            <parameter type-id='type-id-2602'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator*' mangled-name='_ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEEdeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2573' is-artificial='yes'/>
-            <return type-id='type-id-2606'/>
+            <parameter type-id='type-id-2574' is-artificial='yes'/>
+            <return type-id='type-id-2607'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_get' mangled-name='_ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE6_M_getEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2573' is-artificial='yes'/>
-            <return type-id='type-id-2607'/>
+            <parameter type-id='type-id-2574' is-artificial='yes'/>
+            <return type-id='type-id-2608'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator++' mangled-name='_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2597' is-artificial='yes'/>
-            <return type-id='type-id-2596'/>
+            <parameter type-id='type-id-2598' is-artificial='yes'/>
+            <return type-id='type-id-2597'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='equal' mangled-name='_ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE5equalERKS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2573' is-artificial='yes'/>
-            <parameter type-id='type-id-2572'/>
+            <parameter type-id='type-id-2574' is-artificial='yes'/>
+            <parameter type-id='type-id-2573'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_at_eof' mangled-name='_ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE9_M_at_eofEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2573' is-artificial='yes'/>
+            <parameter type-id='type-id-2574' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='55' column='1' id='type-id-2608'>
+      <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='55' column='1' id='type-id-2609'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_mask' type-id='type-id-1015' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='55' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Setiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='85' column='1' id='type-id-2609'>
+      <class-decl name='_Setiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='85' column='1' id='type-id-2610'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_mask' type-id='type-id-1015' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='85' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Setbase' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='115' column='1' id='type-id-2610'>
+      <class-decl name='_Setbase' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='115' column='1' id='type-id-2611'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_base' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='115' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='184' column='1' id='type-id-2611'>
+      <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='184' column='1' id='type-id-2612'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_n' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='184' column='1'/>
         </data-member>
       </class-decl>
-      <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='214' column='1' id='type-id-2612'>
+      <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='214' column='1' id='type-id-2613'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_n' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='214' column='1'/>
         </data-member>
       </class-decl>
       <function-decl name='__check_facet&lt;std::num_get&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2574'/>
-        <return type-id='type-id-2534'/>
+        <parameter type-id='type-id-2575'/>
+        <return type-id='type-id-2535'/>
       </function-decl>
       <function-decl name='__check_facet&lt;std::num_get&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2575'/>
-        <return type-id='type-id-2536'/>
+        <parameter type-id='type-id-2576'/>
+        <return type-id='type-id-2537'/>
       </function-decl>
       <function-decl name='operator~' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1016'/>
         <return type-id='type-id-1016'/>
       </function-decl>
       <function-decl name='operator&amp;=' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2550'/>
+        <parameter type-id='type-id-2551'/>
         <parameter type-id='type-id-1016'/>
-        <return type-id='type-id-2549'/>
+        <return type-id='type-id-2550'/>
       </function-decl>
       <function-decl name='operator~' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-679'/>
@@ -30810,135 +30816,135 @@ 
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator==&lt;__mbstate_t&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1305'/>
-        <parameter type-id='type-id-1305'/>
+        <parameter type-id='type-id-1306'/>
+        <parameter type-id='type-id-1306'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator==&lt;char, std::char_traits&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2568'/>
-        <parameter type-id='type-id-2568'/>
+        <parameter type-id='type-id-2569'/>
+        <parameter type-id='type-id-2569'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator==&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2572'/>
-        <parameter type-id='type-id-2572'/>
+        <parameter type-id='type-id-2573'/>
+        <parameter type-id='type-id-2573'/>
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1'/>
-        <parameter type-id='type-id-2608' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1'/>
+        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1'/>
-        <parameter type-id='type-id-2608' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1'/>
+        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='70' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1'/>
-        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1'/>
+        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1'/>
-        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1'/>
+        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='100' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_Setbase' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_Setbase@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1'/>
-        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1'/>
+        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_Setbase' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_Setbase@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1'/>
-        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1'/>
+        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='131' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1'/>
-        <parameter type-id='type-id-2554' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1'/>
+        <parameter type-id='type-id-2555' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1'/>
-        <parameter type-id='type-id-2555' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1'/>
+        <parameter type-id='type-id-2556' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='169' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St13_Setprecision' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St13_Setprecision@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1'/>
-        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1'/>
+        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St13_Setprecision' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St13_Setprecision@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1'/>
-        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1'/>
+        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='199' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St5_Setw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St5_Setw@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1'/>
-        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1'/>
+        <parameter type-id='type-id-2613' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St5_Setw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St5_Setw@@GLIBCXX_3.4'>
         <parameter type-id='type-id-803' name='__is' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1'/>
-        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1'/>
+        <parameter type-id='type-id-2613' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='229' column='1'/>
         <return type-id='type-id-803'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Rh' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='725' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Rh@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__in' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='725' column='1'/>
-        <parameter type-id='type-id-2602' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='725' column='1'/>
+        <parameter type-id='type-id-2603' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='725' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ra' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='730' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ra@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__in' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='730' column='1'/>
-        <parameter type-id='type-id-2582' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='730' column='1'/>
+        <parameter type-id='type-id-2583' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='730' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ph' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='772' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ph@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__in' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='772' column='1'/>
-        <parameter type-id='type-id-2613' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='772' column='1'/>
+        <parameter type-id='type-id-2614' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='772' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
       <function-decl name='operator&gt;&gt;&lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Pa' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Pa@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__in' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='777' column='1'/>
-        <parameter type-id='type-id-2614' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='777' column='1'/>
+        <parameter type-id='type-id-2615' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='777' column='1'/>
         <return type-id='type-id-797'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='__enable_if&lt;true, int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='47' column='1' id='type-id-2615'>
+      <class-decl name='__enable_if&lt;true, int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='47' column='1' id='type-id-2616'>
         <member-type access='public'>
-          <typedef-decl name='__type' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='48' column='1' id='type-id-2616'/>
+          <typedef-decl name='__type' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='48' column='1' id='type-id-2617'/>
         </member-type>
       </class-decl>
     </namespace-decl>
-    <function-type size-in-bits='64' id='type-id-2584'>
-      <parameter type-id='type-id-2583'/>
-      <return type-id='type-id-2583'/>
-    </function-type>
     <function-type size-in-bits='64' id='type-id-2585'>
+      <parameter type-id='type-id-2584'/>
+      <return type-id='type-id-2584'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-2586'>
       <parameter type-id='type-id-800'/>
       <return type-id='type-id-800'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-2587'>
-      <parameter type-id='type-id-2586'/>
-      <return type-id='type-id-2586'/>
-    </function-type>
     <function-type size-in-bits='64' id='type-id-2588'>
+      <parameter type-id='type-id-2587'/>
+      <return type-id='type-id-2587'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-2589'>
       <parameter type-id='type-id-806'/>
       <return type-id='type-id-806'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-2589'>
-      <parameter type-id='type-id-2542'/>
-      <return type-id='type-id-2542'/>
+    <function-type size-in-bits='64' id='type-id-2590'>
+      <parameter type-id='type-id-2543'/>
+      <return type-id='type-id-2543'/>
     </function-type>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/istream.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1035' const='yes' id='type-id-2617'/>
-    <qualified-type-def type-id='type-id-1066' const='yes' id='type-id-2618'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2339' size-in-bits='64' id='type-id-2541'/>
-    <pointer-type-def type-id='type-id-1035' size-in-bits='64' id='type-id-1049'/>
-    <pointer-type-def type-id='type-id-1066' size-in-bits='64' id='type-id-1077'/>
+    <qualified-type-def type-id='type-id-1036' const='yes' id='type-id-2618'/>
+    <qualified-type-def type-id='type-id-1067' const='yes' id='type-id-2619'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2340' size-in-bits='64' id='type-id-2542'/>
+    <pointer-type-def type-id='type-id-1036' size-in-bits='64' id='type-id-1050'/>
+    <pointer-type-def type-id='type-id-1067' size-in-bits='64' id='type-id-1078'/>
     <namespace-decl name='std'>
       <function-decl name='operator&gt;&gt;&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_PS3_' filepath='../../../.././libstdc++-v3/src/c++98/istream.cc' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_PS3_@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__in' filepath='../../../.././libstdc++-v3/src/c++98/istream.cc' line='198' column='1'/>
@@ -30965,54 +30971,54 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/list.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <reference-type-def kind='lvalue' type-id='type-id-2619' size-in-bits='64' id='type-id-2620'/>
-    <pointer-type-def type-id='type-id-2619' size-in-bits='64' id='type-id-2621'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2621' size-in-bits='64' id='type-id-2622'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2620' size-in-bits='64' id='type-id-2621'/>
+    <pointer-type-def type-id='type-id-2620' size-in-bits='64' id='type-id-2622'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2622' size-in-bits='64' id='type-id-2623'/>
     <namespace-decl name='std'>
       <function-decl name='swap&lt;std::__detail::_List_node_base*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2622'/>
-        <parameter type-id='type-id-2622'/>
+        <parameter type-id='type-id-2623'/>
+        <parameter type-id='type-id-2623'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <namespace-decl name='__detail'>
-        <class-decl name='_List_node_base' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='78' column='1' id='type-id-2619'>
+        <class-decl name='_List_node_base' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='78' column='1' id='type-id-2620'>
           <data-member access='public' layout-offset-in-bits='0'>
-            <var-decl name='_M_next' type-id='type-id-2621' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='80' column='1'/>
+            <var-decl name='_M_next' type-id='type-id-2622' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='80' column='1'/>
           </data-member>
           <data-member access='public' layout-offset-in-bits='64'>
-            <var-decl name='_M_prev' type-id='type-id-2621' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='81' column='1'/>
+            <var-decl name='_M_prev' type-id='type-id-2622' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='81' column='1'/>
           </data-member>
           <member-function access='public' static='yes'>
             <function-decl name='swap' mangled-name='_ZNSt8__detail15_List_node_base4swapERS0_S1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8__detail15_List_node_base4swapERS0_S1_@@GLIBCXX_3.4.15'>
-              <parameter type-id='type-id-2620'/>
-              <parameter type-id='type-id-2620'/>
+              <parameter type-id='type-id-2621'/>
+              <parameter type-id='type-id-2621'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='_M_transfer' mangled-name='_ZNSt8__detail15_List_node_base11_M_transferEPS0_S1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8__detail15_List_node_base11_M_transferEPS0_S1_@@GLIBCXX_3.4.15'>
-              <parameter type-id='type-id-2621' is-artificial='yes'/>
-              <parameter type-id='type-id-2621'/>
-              <parameter type-id='type-id-2621'/>
+              <parameter type-id='type-id-2622' is-artificial='yes'/>
+              <parameter type-id='type-id-2622'/>
+              <parameter type-id='type-id-2622'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='_M_reverse' mangled-name='_ZNSt8__detail15_List_node_base10_M_reverseEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8__detail15_List_node_base10_M_reverseEv@@GLIBCXX_3.4.15'>
-              <parameter type-id='type-id-2621' is-artificial='yes'/>
+              <parameter type-id='type-id-2622' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='_M_hook' mangled-name='_ZNSt8__detail15_List_node_base7_M_hookEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8__detail15_List_node_base7_M_hookEPS0_@@GLIBCXX_3.4.15'>
-              <parameter type-id='type-id-2621' is-artificial='yes'/>
-              <parameter type-id='type-id-2621'/>
+              <parameter type-id='type-id-2622' is-artificial='yes'/>
+              <parameter type-id='type-id-2622'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
           <member-function access='public'>
             <function-decl name='_M_unhook' mangled-name='_ZNSt8__detail15_List_node_base9_M_unhookEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8__detail15_List_node_base9_M_unhookEv@@GLIBCXX_3.4.15'>
-              <parameter type-id='type-id-2621' is-artificial='yes'/>
+              <parameter type-id='type-id-2622' is-artificial='yes'/>
               <return type-id='type-id-5'/>
             </function-decl>
           </member-function>
@@ -31021,106 +31027,106 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='88' id='type-id-2623'>
-      <subrange length='11' type-id='type-id-176' id='type-id-2624'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='88' id='type-id-2624'>
+      <subrange length='11' type-id='type-id-176' id='type-id-2625'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='208' id='type-id-2625'>
-      <subrange length='26' type-id='type-id-176' id='type-id-2626'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='208' id='type-id-2626'>
+      <subrange length='26' type-id='type-id-176' id='type-id-2627'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='288' id='type-id-2627'>
-      <subrange length='36' type-id='type-id-176' id='type-id-2628'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='288' id='type-id-2628'>
+      <subrange length='36' type-id='type-id-176' id='type-id-2629'/>
     </array-type-def>
-    <qualified-type-def type-id='type-id-2051' const='yes' id='type-id-2629'/>
-    <pointer-type-def type-id='type-id-2629' size-in-bits='64' id='type-id-2121'/>
-    <qualified-type-def type-id='type-id-2119' const='yes' id='type-id-2630'/>
-    <pointer-type-def type-id='type-id-2630' size-in-bits='64' id='type-id-2123'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2123' size-in-bits='64' id='type-id-2124'/>
-    <qualified-type-def type-id='type-id-2118' const='yes' id='type-id-2631'/>
-    <pointer-type-def type-id='type-id-2631' size-in-bits='64' id='type-id-2127'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2127' size-in-bits='64' id='type-id-2128'/>
-    <qualified-type-def type-id='type-id-2632' const='yes' id='type-id-2633'/>
-    <pointer-type-def type-id='type-id-2633' size-in-bits='64' id='type-id-2634'/>
-    <qualified-type-def type-id='type-id-2635' const='yes' id='type-id-2636'/>
-    <pointer-type-def type-id='type-id-2636' size-in-bits='64' id='type-id-2637'/>
-    <qualified-type-def type-id='type-id-2638' const='yes' id='type-id-2639'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2639' size-in-bits='64' id='type-id-2640'/>
-    <pointer-type-def type-id='type-id-2639' size-in-bits='64' id='type-id-2641'/>
-    <qualified-type-def type-id='type-id-2642' const='yes' id='type-id-2643'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2643' size-in-bits='64' id='type-id-2644'/>
-    <pointer-type-def type-id='type-id-2643' size-in-bits='64' id='type-id-2645'/>
-    <qualified-type-def type-id='type-id-2646' const='yes' id='type-id-2647'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2647' size-in-bits='64' id='type-id-2648'/>
-    <pointer-type-def type-id='type-id-2647' size-in-bits='64' id='type-id-2649'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2650' size-in-bits='64' id='type-id-2651'/>
-    <qualified-type-def type-id='type-id-2652' const='yes' id='type-id-2653'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2653' size-in-bits='64' id='type-id-2654'/>
-    <qualified-type-def type-id='type-id-2655' const='yes' id='type-id-2656'/>
-    <pointer-type-def type-id='type-id-2656' size-in-bits='64' id='type-id-2657'/>
-    <qualified-type-def type-id='type-id-2658' const='yes' id='type-id-2659'/>
-    <pointer-type-def type-id='type-id-2659' size-in-bits='64' id='type-id-2660'/>
-    <qualified-type-def type-id='type-id-2661' const='yes' id='type-id-2662'/>
-    <pointer-type-def type-id='type-id-2662' size-in-bits='64' id='type-id-2663'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2026' size-in-bits='64' id='type-id-1302'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2664' size-in-bits='64' id='type-id-2665'/>
-    <qualified-type-def type-id='type-id-2666' const='yes' id='type-id-2667'/>
-    <qualified-type-def type-id='type-id-2605' const='yes' id='type-id-2668'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2669' size-in-bits='64' id='type-id-2670'/>
-    <qualified-type-def type-id='type-id-2671' const='yes' id='type-id-2672'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2672' size-in-bits='64' id='type-id-2673'/>
-    <qualified-type-def type-id='type-id-2674' const='yes' id='type-id-2675'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2675' size-in-bits='64' id='type-id-2676'/>
-    <pointer-type-def type-id='type-id-2675' size-in-bits='64' id='type-id-2677'/>
-    <qualified-type-def type-id='type-id-2678' const='yes' id='type-id-2679'/>
-    <qualified-type-def type-id='type-id-2680' const='yes' id='type-id-2681'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2681' size-in-bits='64' id='type-id-2682'/>
-    <pointer-type-def type-id='type-id-2681' size-in-bits='64' id='type-id-2683'/>
-    <qualified-type-def type-id='type-id-2684' const='yes' id='type-id-2685'/>
-    <qualified-type-def type-id='type-id-2686' const='yes' id='type-id-2687'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2687' size-in-bits='64' id='type-id-2688'/>
-    <qualified-type-def type-id='type-id-2689' const='yes' id='type-id-2690'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2690' size-in-bits='64' id='type-id-2691'/>
-    <pointer-type-def type-id='type-id-2690' size-in-bits='64' id='type-id-2692'/>
-    <qualified-type-def type-id='type-id-2693' const='yes' id='type-id-2694'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2694' size-in-bits='64' id='type-id-2695'/>
-    <pointer-type-def type-id='type-id-2694' size-in-bits='64' id='type-id-2696'/>
-    <qualified-type-def type-id='type-id-2697' const='yes' id='type-id-2698'/>
-    <pointer-type-def type-id='type-id-2537' size-in-bits='64' id='type-id-2699'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2577' size-in-bits='64' id='type-id-2700'/>
-    <qualified-type-def type-id='type-id-2701' const='yes' id='type-id-2702'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2702' size-in-bits='64' id='type-id-2703'/>
-    <pointer-type-def type-id='type-id-2702' size-in-bits='64' id='type-id-2704'/>
-    <qualified-type-def type-id='type-id-2705' const='yes' id='type-id-2706'/>
-    <qualified-type-def type-id='type-id-2707' const='yes' id='type-id-2708'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2708' size-in-bits='64' id='type-id-2709'/>
-    <pointer-type-def type-id='type-id-2708' size-in-bits='64' id='type-id-2710'/>
-    <pointer-type-def type-id='type-id-2119' size-in-bits='64' id='type-id-2129'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2129' size-in-bits='64' id='type-id-2130'/>
-    <pointer-type-def type-id='type-id-2118' size-in-bits='64' id='type-id-2125'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2125' size-in-bits='64' id='type-id-2126'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2120' size-in-bits='64' id='type-id-2122'/>
-    <pointer-type-def type-id='type-id-2632' size-in-bits='64' id='type-id-2711'/>
-    <pointer-type-def type-id='type-id-2635' size-in-bits='64' id='type-id-2712'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2638' size-in-bits='64' id='type-id-2713'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2642' size-in-bits='64' id='type-id-2714'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2646' size-in-bits='64' id='type-id-2715'/>
-    <pointer-type-def type-id='type-id-2716' size-in-bits='64' id='type-id-2717'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2652' size-in-bits='64' id='type-id-2718'/>
-    <pointer-type-def type-id='type-id-2719' size-in-bits='64' id='type-id-2720'/>
-    <pointer-type-def type-id='type-id-2721' size-in-bits='64' id='type-id-2722'/>
-    <pointer-type-def type-id='type-id-2723' size-in-bits='64' id='type-id-2724'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2725' size-in-bits='64' id='type-id-2726'/>
-    <pointer-type-def type-id='type-id-2727' size-in-bits='64' id='type-id-2728'/>
-    <pointer-type-def type-id='type-id-2729' size-in-bits='64' id='type-id-2730'/>
-    <pointer-type-def type-id='type-id-2731' size-in-bits='64' id='type-id-2732'/>
-    <reference-type-def kind='lvalue' type-id='type-id-322' size-in-bits='64' id='type-id-2733'/>
-    <pointer-type-def type-id='type-id-2734' size-in-bits='64' id='type-id-2735'/>
-    <pointer-type-def type-id='type-id-2736' size-in-bits='64' id='type-id-2737'/>
+    <qualified-type-def type-id='type-id-2052' const='yes' id='type-id-2630'/>
+    <pointer-type-def type-id='type-id-2630' size-in-bits='64' id='type-id-2122'/>
+    <qualified-type-def type-id='type-id-2120' const='yes' id='type-id-2631'/>
+    <pointer-type-def type-id='type-id-2631' size-in-bits='64' id='type-id-2124'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2124' size-in-bits='64' id='type-id-2125'/>
+    <qualified-type-def type-id='type-id-2119' const='yes' id='type-id-2632'/>
+    <pointer-type-def type-id='type-id-2632' size-in-bits='64' id='type-id-2128'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2128' size-in-bits='64' id='type-id-2129'/>
+    <qualified-type-def type-id='type-id-2633' const='yes' id='type-id-2634'/>
+    <pointer-type-def type-id='type-id-2634' size-in-bits='64' id='type-id-2635'/>
+    <qualified-type-def type-id='type-id-2636' const='yes' id='type-id-2637'/>
+    <pointer-type-def type-id='type-id-2637' size-in-bits='64' id='type-id-2638'/>
+    <qualified-type-def type-id='type-id-2639' const='yes' id='type-id-2640'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2640' size-in-bits='64' id='type-id-2641'/>
+    <pointer-type-def type-id='type-id-2640' size-in-bits='64' id='type-id-2642'/>
+    <qualified-type-def type-id='type-id-2643' const='yes' id='type-id-2644'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2644' size-in-bits='64' id='type-id-2645'/>
+    <pointer-type-def type-id='type-id-2644' size-in-bits='64' id='type-id-2646'/>
+    <qualified-type-def type-id='type-id-2647' const='yes' id='type-id-2648'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2648' size-in-bits='64' id='type-id-2649'/>
+    <pointer-type-def type-id='type-id-2648' size-in-bits='64' id='type-id-2650'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2651' size-in-bits='64' id='type-id-2652'/>
+    <qualified-type-def type-id='type-id-2653' const='yes' id='type-id-2654'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2654' size-in-bits='64' id='type-id-2655'/>
+    <qualified-type-def type-id='type-id-2656' const='yes' id='type-id-2657'/>
+    <pointer-type-def type-id='type-id-2657' size-in-bits='64' id='type-id-2658'/>
+    <qualified-type-def type-id='type-id-2659' const='yes' id='type-id-2660'/>
+    <pointer-type-def type-id='type-id-2660' size-in-bits='64' id='type-id-2661'/>
+    <qualified-type-def type-id='type-id-2662' const='yes' id='type-id-2663'/>
+    <pointer-type-def type-id='type-id-2663' size-in-bits='64' id='type-id-2664'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2027' size-in-bits='64' id='type-id-1303'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2665' size-in-bits='64' id='type-id-2666'/>
+    <qualified-type-def type-id='type-id-2667' const='yes' id='type-id-2668'/>
+    <qualified-type-def type-id='type-id-2606' const='yes' id='type-id-2669'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2670' size-in-bits='64' id='type-id-2671'/>
+    <qualified-type-def type-id='type-id-2672' const='yes' id='type-id-2673'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2673' size-in-bits='64' id='type-id-2674'/>
+    <qualified-type-def type-id='type-id-2675' const='yes' id='type-id-2676'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2676' size-in-bits='64' id='type-id-2677'/>
+    <pointer-type-def type-id='type-id-2676' size-in-bits='64' id='type-id-2678'/>
+    <qualified-type-def type-id='type-id-2679' const='yes' id='type-id-2680'/>
+    <qualified-type-def type-id='type-id-2681' const='yes' id='type-id-2682'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2682' size-in-bits='64' id='type-id-2683'/>
+    <pointer-type-def type-id='type-id-2682' size-in-bits='64' id='type-id-2684'/>
+    <qualified-type-def type-id='type-id-2685' const='yes' id='type-id-2686'/>
+    <qualified-type-def type-id='type-id-2687' const='yes' id='type-id-2688'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2688' size-in-bits='64' id='type-id-2689'/>
+    <qualified-type-def type-id='type-id-2690' const='yes' id='type-id-2691'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2691' size-in-bits='64' id='type-id-2692'/>
+    <pointer-type-def type-id='type-id-2691' size-in-bits='64' id='type-id-2693'/>
+    <qualified-type-def type-id='type-id-2694' const='yes' id='type-id-2695'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2695' size-in-bits='64' id='type-id-2696'/>
+    <pointer-type-def type-id='type-id-2695' size-in-bits='64' id='type-id-2697'/>
+    <qualified-type-def type-id='type-id-2698' const='yes' id='type-id-2699'/>
+    <pointer-type-def type-id='type-id-2538' size-in-bits='64' id='type-id-2700'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2578' size-in-bits='64' id='type-id-2701'/>
+    <qualified-type-def type-id='type-id-2702' const='yes' id='type-id-2703'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2703' size-in-bits='64' id='type-id-2704'/>
+    <pointer-type-def type-id='type-id-2703' size-in-bits='64' id='type-id-2705'/>
+    <qualified-type-def type-id='type-id-2706' const='yes' id='type-id-2707'/>
+    <qualified-type-def type-id='type-id-2708' const='yes' id='type-id-2709'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2709' size-in-bits='64' id='type-id-2710'/>
+    <pointer-type-def type-id='type-id-2709' size-in-bits='64' id='type-id-2711'/>
+    <pointer-type-def type-id='type-id-2120' size-in-bits='64' id='type-id-2130'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2130' size-in-bits='64' id='type-id-2131'/>
+    <pointer-type-def type-id='type-id-2119' size-in-bits='64' id='type-id-2126'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2126' size-in-bits='64' id='type-id-2127'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2121' size-in-bits='64' id='type-id-2123'/>
+    <pointer-type-def type-id='type-id-2633' size-in-bits='64' id='type-id-2712'/>
+    <pointer-type-def type-id='type-id-2636' size-in-bits='64' id='type-id-2713'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2639' size-in-bits='64' id='type-id-2714'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2643' size-in-bits='64' id='type-id-2715'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2647' size-in-bits='64' id='type-id-2716'/>
+    <pointer-type-def type-id='type-id-2717' size-in-bits='64' id='type-id-2718'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2653' size-in-bits='64' id='type-id-2719'/>
+    <pointer-type-def type-id='type-id-2720' size-in-bits='64' id='type-id-2721'/>
+    <pointer-type-def type-id='type-id-2722' size-in-bits='64' id='type-id-2723'/>
+    <pointer-type-def type-id='type-id-2724' size-in-bits='64' id='type-id-2725'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2726' size-in-bits='64' id='type-id-2727'/>
+    <pointer-type-def type-id='type-id-2728' size-in-bits='64' id='type-id-2729'/>
+    <pointer-type-def type-id='type-id-2730' size-in-bits='64' id='type-id-2731'/>
+    <pointer-type-def type-id='type-id-2732' size-in-bits='64' id='type-id-2733'/>
+    <reference-type-def kind='lvalue' type-id='type-id-322' size-in-bits='64' id='type-id-2734'/>
+    <pointer-type-def type-id='type-id-2735' size-in-bits='64' id='type-id-2736'/>
+    <pointer-type-def type-id='type-id-2737' size-in-bits='64' id='type-id-2738'/>
     <namespace-decl name='std'>
-      <class-decl name='codecvt_byname&lt;char, char, __mbstate_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='459' column='1' id='type-id-2719'>
+      <class-decl name='codecvt_byname&lt;char, char, __mbstate_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='459' column='1' id='type-id-2720'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-956'/>
         <member-function access='private'>
           <function-decl name='codecvt_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='463' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2720' is-artificial='yes'/>
+            <parameter type-id='type-id-2721' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31128,7 +31134,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt_byname' mangled-name='_ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2720' is-artificial='yes'/>
+            <parameter type-id='type-id-2721' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31136,31 +31142,31 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2720' is-artificial='yes'/>
+            <parameter type-id='type-id-2721' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt_byname' mangled-name='_ZNSt14codecvt_bynameIcc11__mbstate_tED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14codecvt_bynameIcc11__mbstate_tED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2720' is-artificial='yes'/>
+            <parameter type-id='type-id-2721' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt_byname' mangled-name='_ZNSt14codecvt_bynameIcc11__mbstate_tED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14codecvt_bynameIcc11__mbstate_tED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2720' is-artificial='yes'/>
+            <parameter type-id='type-id-2721' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='collate_byname&lt;char&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='760' column='1' id='type-id-2721'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2738'/>
+      <class-decl name='collate_byname&lt;char&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='760' column='1' id='type-id-2722'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2739'/>
         <member-function access='private'>
           <function-decl name='collate_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='770' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2722' is-artificial='yes'/>
+            <parameter type-id='type-id-2723' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31168,7 +31174,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='collate_byname' mangled-name='_ZNSt14collate_bynameIcEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='770' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14collate_bynameIcEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2722' is-artificial='yes'/>
+            <parameter type-id='type-id-2723' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31176,30 +31182,30 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='783' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2722' is-artificial='yes'/>
+            <parameter type-id='type-id-2723' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate_byname' mangled-name='_ZNSt14collate_bynameIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='783' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14collate_bynameIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2722' is-artificial='yes'/>
+            <parameter type-id='type-id-2723' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate_byname' mangled-name='_ZNSt14collate_bynameIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='783' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14collate_bynameIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2722' is-artificial='yes'/>
+            <parameter type-id='type-id-2723' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__pad&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='90' column='1' id='type-id-2739'>
+      <class-decl name='__pad&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='90' column='1' id='type-id-2740'>
         <member-function access='private' static='yes'>
           <function-decl name='_S_pad' mangled-name='_ZNSt5__padIcSt11char_traitsIcEE6_S_padERSt8ios_basecPcPKcll' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1193' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-4'/>
@@ -31209,145 +31215,145 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__ctype_abstract_base&lt;char&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='145' column='1' id='type-id-2632'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2212'/>
+      <class-decl name='__ctype_abstract_base&lt;char&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='145' column='1' id='type-id-2633'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2213'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='150' column='1' id='type-id-2635'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='150' column='1' id='type-id-2636'/>
         </member-type>
         <member-function access='protected'>
           <function-decl name='__ctype_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2711' is-artificial='yes'/>
+            <parameter type-id='type-id-2712' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__ctype_abstract_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2711' is-artificial='yes'/>
+            <parameter type-id='type-id-2712' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__ctype_abstract_base' mangled-name='_ZNSt21__ctype_abstract_baseIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2711' is-artificial='yes'/>
+            <parameter type-id='type-id-2712' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__ctype_abstract_base' mangled-name='_ZNSt21__ctype_abstract_baseIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2711' is-artificial='yes'/>
+            <parameter type-id='type-id-2712' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_is' mangled-name='_ZNKSt21__ctype_abstract_baseIcE5do_isEtc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='373' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2635'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2636'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_is' mangled-name='_ZNKSt21__ctype_abstract_baseIcE5do_isEPKcS2_Pt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='392' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2637'/>
-            <parameter type-id='type-id-2637'/>
-            <parameter type-id='type-id-2218'/>
-            <return type-id='type-id-2637'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2638'/>
+            <parameter type-id='type-id-2638'/>
+            <parameter type-id='type-id-2219'/>
+            <return type-id='type-id-2638'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_scan_is' mangled-name='_ZNKSt21__ctype_abstract_baseIcE10do_scan_isEtPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='411' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2637'/>
-            <parameter type-id='type-id-2637'/>
-            <return type-id='type-id-2637'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2638'/>
+            <parameter type-id='type-id-2638'/>
+            <return type-id='type-id-2638'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_scan_not' mangled-name='_ZNKSt21__ctype_abstract_baseIcE11do_scan_notEtPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='430' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2215'/>
-            <parameter type-id='type-id-2637'/>
-            <parameter type-id='type-id-2637'/>
-            <return type-id='type-id-2637'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2216'/>
+            <parameter type-id='type-id-2638'/>
+            <parameter type-id='type-id-2638'/>
+            <return type-id='type-id-2638'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt21__ctype_abstract_baseIcE10do_toupperEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='448' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2635'/>
-            <return type-id='type-id-2635'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2636'/>
+            <return type-id='type-id-2636'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_toupper' mangled-name='_ZNKSt21__ctype_abstract_baseIcE10do_toupperEPcPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='465' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2712'/>
-            <parameter type-id='type-id-2637'/>
-            <return type-id='type-id-2637'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2713'/>
+            <parameter type-id='type-id-2638'/>
+            <return type-id='type-id-2638'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt21__ctype_abstract_baseIcE10do_tolowerEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='481' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2635'/>
-            <return type-id='type-id-2635'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2636'/>
+            <return type-id='type-id-2636'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_tolower' mangled-name='_ZNKSt21__ctype_abstract_baseIcE10do_tolowerEPcPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='498' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2712'/>
-            <parameter type-id='type-id-2637'/>
-            <return type-id='type-id-2637'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2713'/>
+            <parameter type-id='type-id-2638'/>
+            <return type-id='type-id-2638'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_widen' mangled-name='_ZNKSt21__ctype_abstract_baseIcE8do_widenEc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='517' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2635'/>
+            <return type-id='type-id-2636'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='11'>
           <function-decl name='do_widen' mangled-name='_ZNKSt21__ctype_abstract_baseIcE8do_widenEPKcS2_Pc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-2712'/>
+            <parameter type-id='type-id-2713'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='12'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt21__ctype_abstract_baseIcE9do_narrowEcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='559' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2635'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2636'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-188'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='13'>
           <function-decl name='do_narrow' mangled-name='_ZNKSt21__ctype_abstract_baseIcE9do_narrowEPKcS2_cPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='584' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2634' is-artificial='yes'/>
-            <parameter type-id='type-id-2637'/>
-            <parameter type-id='type-id-2637'/>
+            <parameter type-id='type-id-2635' is-artificial='yes'/>
+            <parameter type-id='type-id-2638'/>
+            <parameter type-id='type-id-2638'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-94'/>
-            <return type-id='type-id-2637'/>
+            <return type-id='type-id-2638'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='numpunct_byname&lt;char&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1876' column='1' id='type-id-2731'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2576'/>
+      <class-decl name='numpunct_byname&lt;char&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1876' column='1' id='type-id-2732'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2577'/>
         <member-function access='private'>
           <function-decl name='numpunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1883' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2732' is-artificial='yes'/>
+            <parameter type-id='type-id-2733' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31355,7 +31361,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct_byname' mangled-name='_ZNSt15numpunct_bynameIcEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1883' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15numpunct_bynameIcEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2732' is-artificial='yes'/>
+            <parameter type-id='type-id-2733' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31363,40 +31369,40 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1898' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2732' is-artificial='yes'/>
+            <parameter type-id='type-id-2733' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct_byname' mangled-name='_ZNSt15numpunct_bynameIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1898' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15numpunct_bynameIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2732' is-artificial='yes'/>
+            <parameter type-id='type-id-2733' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct_byname' mangled-name='_ZNSt15numpunct_bynameIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1898' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15numpunct_bynameIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2732' is-artificial='yes'/>
+            <parameter type-id='type-id-2733' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__use_cache&lt;std::__numpunct_cache&lt;char&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='52' column='1' id='type-id-2661'>
+      <class-decl name='__use_cache&lt;std::__numpunct_cache&lt;char&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='52' column='1' id='type-id-2662'>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt11__use_cacheISt16__numpunct_cacheIcEEclERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2663' is-artificial='yes'/>
+            <parameter type-id='type-id-2664' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-2649'/>
+            <return type-id='type-id-2650'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_get_byname&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='686' column='1' id='type-id-2734'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2701'/>
+      <class-decl name='time_get_byname&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='686' column='1' id='type-id-2735'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2702'/>
         <member-function access='private'>
           <function-decl name='time_get_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2735' is-artificial='yes'/>
+            <parameter type-id='type-id-2736' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31404,7 +31410,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='time_get_byname' mangled-name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2735' is-artificial='yes'/>
+            <parameter type-id='type-id-2736' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31412,31 +31418,31 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2735' is-artificial='yes'/>
+            <parameter type-id='type-id-2736' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get_byname' mangled-name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2735' is-artificial='yes'/>
+            <parameter type-id='type-id-2736' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get_byname' mangled-name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2735' is-artificial='yes'/>
+            <parameter type-id='type-id-2736' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_put_byname&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='811' column='1' id='type-id-2736'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2707'/>
+      <class-decl name='time_put_byname&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='811' column='1' id='type-id-2737'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2708'/>
         <member-function access='private'>
           <function-decl name='time_put_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='819' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2737' is-artificial='yes'/>
+            <parameter type-id='type-id-2738' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31444,7 +31450,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='time_put_byname' mangled-name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2737' is-artificial='yes'/>
+            <parameter type-id='type-id-2738' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31452,34 +31458,34 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2737' is-artificial='yes'/>
+            <parameter type-id='type-id-2738' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put_byname' mangled-name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2737' is-artificial='yes'/>
+            <parameter type-id='type-id-2738' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put_byname' mangled-name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2737' is-artificial='yes'/>
+            <parameter type-id='type-id-2738' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct_byname&lt;char, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-2727'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2689'/>
+      <class-decl name='moneypunct_byname&lt;char, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-2728'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2690'/>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt17moneypunct_bynameIcLb0EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1330' column='1' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb0EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2728' is-artificial='yes'/>
+            <parameter type-id='type-id-2729' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31487,7 +31493,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIcLb0EEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb0EEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2728' is-artificial='yes'/>
+            <parameter type-id='type-id-2729' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31495,34 +31501,34 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2728' is-artificial='yes'/>
+            <parameter type-id='type-id-2729' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIcLb0EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb0EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2728' is-artificial='yes'/>
+            <parameter type-id='type-id-2729' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIcLb0EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb0EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2728' is-artificial='yes'/>
+            <parameter type-id='type-id-2729' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct_byname&lt;char, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-2729'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2693'/>
+      <class-decl name='moneypunct_byname&lt;char, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-2730'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2694'/>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt17moneypunct_bynameIcLb1EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1330' column='1' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb1EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2730' is-artificial='yes'/>
+            <parameter type-id='type-id-2731' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31530,7 +31536,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIcLb1EEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb1EEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2730' is-artificial='yes'/>
+            <parameter type-id='type-id-2731' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31538,31 +31544,31 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2730' is-artificial='yes'/>
+            <parameter type-id='type-id-2731' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIcLb1EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb1EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2730' is-artificial='yes'/>
+            <parameter type-id='type-id-2731' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIcLb1EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIcLb1EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2730' is-artificial='yes'/>
+            <parameter type-id='type-id-2731' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='messages_byname&lt;char&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1879' column='1' id='type-id-2723'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2740'/>
+      <class-decl name='messages_byname&lt;char&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1879' column='1' id='type-id-2724'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2741'/>
         <member-function access='private'>
           <function-decl name='messages_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/messages_members.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2724' is-artificial='yes'/>
+            <parameter type-id='type-id-2725' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31570,7 +31576,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='messages_byname' mangled-name='_ZNSt15messages_bynameIcEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/messages_members.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15messages_bynameIcEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2724' is-artificial='yes'/>
+            <parameter type-id='type-id-2725' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -31578,41 +31584,41 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1890' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2724' is-artificial='yes'/>
+            <parameter type-id='type-id-2725' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages_byname' mangled-name='_ZNSt15messages_bynameIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15messages_bynameIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2724' is-artificial='yes'/>
+            <parameter type-id='type-id-2725' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages_byname' mangled-name='_ZNSt15messages_bynameIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15messages_bynameIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2724' is-artificial='yes'/>
+            <parameter type-id='type-id-2725' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;char, false&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-2655'>
+      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;char, false&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-2656'>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt11__use_cacheISt18__moneypunct_cacheIcLb0EEEclERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2657' is-artificial='yes'/>
+            <parameter type-id='type-id-2658' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-2641'/>
+            <return type-id='type-id-2642'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;char, true&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-2658'>
+      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;char, true&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-2659'>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt11__use_cacheISt18__moneypunct_cacheIcLb1EEEclERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2660' is-artificial='yes'/>
+            <parameter type-id='type-id-2661' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-2645'/>
+            <return type-id='type-id-2646'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -31670,84 +31676,84 @@ 
       </function-decl>
       <function-decl name='use_facet&lt;std::__timepunct&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt11__timepunctIcEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt11__timepunctIcEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2651'/>
+        <return type-id='type-id-2652'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::codecvt&lt;char, char, __mbstate_t&gt; &gt;' mangled-name='_ZSt9use_facetISt7codecvtIcc11__mbstate_tEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7codecvtIcc11__mbstate_tEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-1302'/>
+        <return type-id='type-id-1303'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::collate&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt7collateIcEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7collateIcEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2665'/>
+        <return type-id='type-id-2666'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::ctype&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2541'/>
+        <return type-id='type-id-2542'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::messages&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt8messagesIcEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8messagesIcEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2670'/>
+        <return type-id='type-id-2671'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::money_get&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2676'/>
+        <return type-id='type-id-2677'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::money_put&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2682'/>
+        <return type-id='type-id-2683'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::moneypunct&lt;char, false&gt; &gt;' mangled-name='_ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2691'/>
+        <return type-id='type-id-2692'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::moneypunct&lt;char, true&gt; &gt;' mangled-name='_ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2695'/>
+        <return type-id='type-id-2696'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::num_get&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2534'/>
+        <return type-id='type-id-2535'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::num_put&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2538'/>
+        <return type-id='type-id-2539'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::numpunct&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2700'/>
+        <return type-id='type-id-2701'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::time_get&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2703'/>
+        <return type-id='type-id-2704'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::time_put&lt;char&gt; &gt;' mangled-name='_ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2709'/>
+        <return type-id='type-id-2710'/>
       </function-decl>
       <function-decl name='__write&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2311'/>
+        <parameter type-id='type-id-2312'/>
         <parameter type-id='type-id-4'/>
         <parameter type-id='type-id-6'/>
-        <return type-id='type-id-2311'/>
+        <return type-id='type-id-2312'/>
       </function-decl>
       <function-decl name='__distance&lt;const char*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_funcs.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-4'/>
         <parameter type-id='type-id-4'/>
         <parameter type-id='type-id-348'/>
-        <return type-id='type-id-1103'/>
+        <return type-id='type-id-1104'/>
       </function-decl>
       <function-decl name='distance&lt;const char*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_funcs.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-4'/>
         <parameter type-id='type-id-4'/>
-        <return type-id='type-id-1103'/>
+        <return type-id='type-id-1104'/>
       </function-decl>
       <function-decl name='__iterator_category&lt;const char*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-671'/>
-        <return type-id='type-id-2333'/>
+        <return type-id='type-id-2334'/>
       </function-decl>
       <function-decl name='operator!=&lt;char, std::char_traits&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2568'/>
-        <parameter type-id='type-id-2568'/>
+        <parameter type-id='type-id-2569'/>
+        <parameter type-id='type-id-2569'/>
         <return type-id='type-id-40'/>
       </function-decl>
     </namespace-decl>
@@ -31757,8 +31763,8 @@ 
         <return type-id='type-id-40'/>
       </function-decl>
       <function-decl name='__uselocale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2024'/>
-        <return type-id='type-id-2024'/>
+        <parameter type-id='type-id-2025'/>
+        <return type-id='type-id-2025'/>
       </function-decl>
     </namespace-decl>
     <function-decl name='textdomain' filepath='/usr/include/libintl.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -31772,25 +31778,25 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='16' id='type-id-2741'>
-      <subrange length='2' type-id='type-id-176' id='type-id-2742'/>
+    <array-type-def dimensions='1' type-id='type-id-188' size-in-bits='16' id='type-id-2742'>
+      <subrange length='2' type-id='type-id-176' id='type-id-2743'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-668' size-in-bits='16' id='type-id-2111'>
-      <subrange length='2' type-id='type-id-176' id='type-id-2742'/>
+    <array-type-def dimensions='1' type-id='type-id-668' size-in-bits='16' id='type-id-2112'>
+      <subrange length='2' type-id='type-id-176' id='type-id-2743'/>
     </array-type-def>
-    <reference-type-def kind='lvalue' type-id='type-id-2194' size-in-bits='64' id='type-id-2112'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2069' size-in-bits='64' id='type-id-2743'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2195' size-in-bits='64' id='type-id-2113'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2070' size-in-bits='64' id='type-id-2744'/>
     <namespace-decl name='std'>
       <function-decl name='operator==&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2490' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-735'/>
         <parameter type-id='type-id-735'/>
-        <return type-id='type-id-2744'/>
+        <return type-id='type-id-2745'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='__enable_if&lt;true, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='47' column='1' id='type-id-2745'>
+      <class-decl name='__enable_if&lt;true, bool&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='47' column='1' id='type-id-2746'>
         <member-type access='public'>
-          <typedef-decl name='__type' type-id='type-id-40' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='48' column='1' id='type-id-2744'/>
+          <typedef-decl name='__type' type-id='type-id-40' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/type_traits.h' line='48' column='1' id='type-id-2745'/>
         </member-type>
       </class-decl>
       <function-decl name='__throw_concurrence_lock_error' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/concurrence.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -31804,14 +31810,14 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale_facets.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='896' id='type-id-2746'>
-      <subrange length='14' type-id='type-id-176' id='type-id-2747'/>
+    <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='896' id='type-id-2747'>
+      <subrange length='14' type-id='type-id-176' id='type-id-2748'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-342' size-in-bits='896' id='type-id-2748'>
-      <subrange length='14' type-id='type-id-176' id='type-id-2747'/>
+    <array-type-def dimensions='1' type-id='type-id-342' size-in-bits='896' id='type-id-2749'>
+      <subrange length='14' type-id='type-id-176' id='type-id-2748'/>
     </array-type-def>
     <namespace-decl name='std'>
-      <class-decl name='__num_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1520' column='1' id='type-id-2749'>
+      <class-decl name='__num_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1520' column='1' id='type-id-2750'>
         <data-member access='private' static='yes'>
           <var-decl name='_S_atoms_out' type-id='type-id-4' mangled-name='_ZNSt10__num_base12_S_atoms_outE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1545' column='1' elf-symbol-id='_ZNSt10__num_base12_S_atoms_outE@@GLIBCXX_3.4'/>
         </data-member>
@@ -31820,7 +31826,7 @@ 
         </data-member>
         <member-function access='private' static='yes'>
           <function-decl name='_S_format_float' mangled-name='_ZNSt10__num_base15_S_format_floatERKSt8ios_basePcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10__num_base15_S_format_floatERKSt8ios_basePcc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-1033'/>
+            <parameter type-id='type-id-1034'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-188'/>
             <return type-id='type-id-5'/>
@@ -31841,75 +31847,75 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale_init.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2750' const='yes' id='type-id-2751'/>
-    <pointer-type-def type-id='type-id-2638' size-in-bits='64' id='type-id-2752'/>
-    <pointer-type-def type-id='type-id-2642' size-in-bits='64' id='type-id-2753'/>
-    <pointer-type-def type-id='type-id-2754' size-in-bits='64' id='type-id-2755'/>
-    <pointer-type-def type-id='type-id-2756' size-in-bits='64' id='type-id-2757'/>
-    <pointer-type-def type-id='type-id-2646' size-in-bits='64' id='type-id-2758'/>
-    <pointer-type-def type-id='type-id-2759' size-in-bits='64' id='type-id-2760'/>
-    <pointer-type-def type-id='type-id-2761' size-in-bits='64' id='type-id-2094'/>
-    <pointer-type-def type-id='type-id-2762' size-in-bits='64' id='type-id-2107'/>
-    <pointer-type-def type-id='type-id-2652' size-in-bits='64' id='type-id-2763'/>
-    <pointer-type-def type-id='type-id-2764' size-in-bits='64' id='type-id-2765'/>
-    <pointer-type-def type-id='type-id-2738' size-in-bits='64' id='type-id-2089'/>
-    <pointer-type-def type-id='type-id-2766' size-in-bits='64' id='type-id-2102'/>
-    <pointer-type-def type-id='type-id-2740' size-in-bits='64' id='type-id-2097'/>
-    <pointer-type-def type-id='type-id-2767' size-in-bits='64' id='type-id-2110'/>
-    <pointer-type-def type-id='type-id-2674' size-in-bits='64' id='type-id-2092'/>
-    <pointer-type-def type-id='type-id-2768' size-in-bits='64' id='type-id-2105'/>
-    <pointer-type-def type-id='type-id-2680' size-in-bits='64' id='type-id-2093'/>
+    <qualified-type-def type-id='type-id-2751' const='yes' id='type-id-2752'/>
+    <pointer-type-def type-id='type-id-2639' size-in-bits='64' id='type-id-2753'/>
+    <pointer-type-def type-id='type-id-2643' size-in-bits='64' id='type-id-2754'/>
+    <pointer-type-def type-id='type-id-2755' size-in-bits='64' id='type-id-2756'/>
+    <pointer-type-def type-id='type-id-2757' size-in-bits='64' id='type-id-2758'/>
+    <pointer-type-def type-id='type-id-2647' size-in-bits='64' id='type-id-2759'/>
+    <pointer-type-def type-id='type-id-2760' size-in-bits='64' id='type-id-2761'/>
+    <pointer-type-def type-id='type-id-2762' size-in-bits='64' id='type-id-2095'/>
+    <pointer-type-def type-id='type-id-2763' size-in-bits='64' id='type-id-2108'/>
+    <pointer-type-def type-id='type-id-2653' size-in-bits='64' id='type-id-2764'/>
+    <pointer-type-def type-id='type-id-2765' size-in-bits='64' id='type-id-2766'/>
+    <pointer-type-def type-id='type-id-2739' size-in-bits='64' id='type-id-2090'/>
+    <pointer-type-def type-id='type-id-2767' size-in-bits='64' id='type-id-2103'/>
+    <pointer-type-def type-id='type-id-2741' size-in-bits='64' id='type-id-2098'/>
+    <pointer-type-def type-id='type-id-2768' size-in-bits='64' id='type-id-2111'/>
+    <pointer-type-def type-id='type-id-2675' size-in-bits='64' id='type-id-2093'/>
     <pointer-type-def type-id='type-id-2769' size-in-bits='64' id='type-id-2106'/>
-    <pointer-type-def type-id='type-id-2689' size-in-bits='64' id='type-id-2090'/>
-    <pointer-type-def type-id='type-id-2770' size-in-bits='64' id='type-id-2771'/>
-    <pointer-type-def type-id='type-id-2693' size-in-bits='64' id='type-id-2091'/>
-    <pointer-type-def type-id='type-id-2772' size-in-bits='64' id='type-id-2773'/>
-    <pointer-type-def type-id='type-id-2774' size-in-bits='64' id='type-id-2103'/>
-    <pointer-type-def type-id='type-id-2775' size-in-bits='64' id='type-id-2776'/>
-    <pointer-type-def type-id='type-id-2777' size-in-bits='64' id='type-id-2104'/>
-    <pointer-type-def type-id='type-id-2778' size-in-bits='64' id='type-id-2779'/>
-    <pointer-type-def type-id='type-id-990' size-in-bits='64' id='type-id-2087'/>
-    <pointer-type-def type-id='type-id-1005' size-in-bits='64' id='type-id-2100'/>
-    <pointer-type-def type-id='type-id-988' size-in-bits='64' id='type-id-2088'/>
-    <pointer-type-def type-id='type-id-1003' size-in-bits='64' id='type-id-2101'/>
-    <pointer-type-def type-id='type-id-2576' size-in-bits='64' id='type-id-2086'/>
-    <pointer-type-def type-id='type-id-2780' size-in-bits='64' id='type-id-2781'/>
-    <pointer-type-def type-id='type-id-2579' size-in-bits='64' id='type-id-2099'/>
-    <pointer-type-def type-id='type-id-2782' size-in-bits='64' id='type-id-2783'/>
-    <pointer-type-def type-id='type-id-2701' size-in-bits='64' id='type-id-2095'/>
-    <pointer-type-def type-id='type-id-2784' size-in-bits='64' id='type-id-2108'/>
-    <pointer-type-def type-id='type-id-2707' size-in-bits='64' id='type-id-2096'/>
+    <pointer-type-def type-id='type-id-2681' size-in-bits='64' id='type-id-2094'/>
+    <pointer-type-def type-id='type-id-2770' size-in-bits='64' id='type-id-2107'/>
+    <pointer-type-def type-id='type-id-2690' size-in-bits='64' id='type-id-2091'/>
+    <pointer-type-def type-id='type-id-2771' size-in-bits='64' id='type-id-2772'/>
+    <pointer-type-def type-id='type-id-2694' size-in-bits='64' id='type-id-2092'/>
+    <pointer-type-def type-id='type-id-2773' size-in-bits='64' id='type-id-2774'/>
+    <pointer-type-def type-id='type-id-2775' size-in-bits='64' id='type-id-2104'/>
+    <pointer-type-def type-id='type-id-2776' size-in-bits='64' id='type-id-2777'/>
+    <pointer-type-def type-id='type-id-2778' size-in-bits='64' id='type-id-2105'/>
+    <pointer-type-def type-id='type-id-2779' size-in-bits='64' id='type-id-2780'/>
+    <pointer-type-def type-id='type-id-990' size-in-bits='64' id='type-id-2088'/>
+    <pointer-type-def type-id='type-id-1005' size-in-bits='64' id='type-id-2101'/>
+    <pointer-type-def type-id='type-id-988' size-in-bits='64' id='type-id-2089'/>
+    <pointer-type-def type-id='type-id-1003' size-in-bits='64' id='type-id-2102'/>
+    <pointer-type-def type-id='type-id-2577' size-in-bits='64' id='type-id-2087'/>
+    <pointer-type-def type-id='type-id-2781' size-in-bits='64' id='type-id-2782'/>
+    <pointer-type-def type-id='type-id-2580' size-in-bits='64' id='type-id-2100'/>
+    <pointer-type-def type-id='type-id-2783' size-in-bits='64' id='type-id-2784'/>
+    <pointer-type-def type-id='type-id-2702' size-in-bits='64' id='type-id-2096'/>
     <pointer-type-def type-id='type-id-2785' size-in-bits='64' id='type-id-2109'/>
+    <pointer-type-def type-id='type-id-2708' size-in-bits='64' id='type-id-2097'/>
+    <pointer-type-def type-id='type-id-2786' size-in-bits='64' id='type-id-2110'/>
     <namespace-decl name='std'>
-      <class-decl name='collate&lt;char&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='586' column='1' id='type-id-2738'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='collate&lt;char&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='586' column='1' id='type-id-2739'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='593' column='1' id='type-id-2666'/>
+          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='593' column='1' id='type-id-2667'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7collateIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='737' column='1' elf-symbol-id='_ZNSt7collateIcE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7collateIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='737' column='1' elf-symbol-id='_ZNSt7collateIcE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_collate' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='599' column='1'/>
+          <var-decl name='_M_c_locale_collate' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='599' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='collate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='613' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2089' is-artificial='yes'/>
+            <parameter type-id='type-id-2090' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='collate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='627' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2089' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2090' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_compare' mangled-name='_ZNKSt7collateIcE10_M_compareEPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/collate_members.cc' line='42' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE10_M_compareEPKcS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-6'/>
@@ -31917,7 +31923,7 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_transform' mangled-name='_ZNKSt7collateIcE12_M_transformEPcPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/collate_members.cc' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE12_M_transformEPcPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
@@ -31926,22 +31932,22 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='collate' mangled-name='_ZNSt7collateIcEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='613' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIcEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2089' is-artificial='yes'/>
+            <parameter type-id='type-id-2090' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='collate' mangled-name='_ZNSt7collateIcEC2EP15__locale_structm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIcEC2EP15__locale_structm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2089' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2090' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='compare' mangled-name='_ZNKSt7collateIcE7compareEPKcS2_S2_S2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='644' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE7compareEPKcS2_S2_S2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
@@ -31951,15 +31957,15 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='transform' mangled-name='_ZNKSt7collateIcE9transformEPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='663' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE9transformEPKcS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-2666'/>
+            <return type-id='type-id-2667'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='hash' mangled-name='_ZNKSt7collateIcE4hashEPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE4hashEPKcS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-20'/>
@@ -31967,28 +31973,28 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='690' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2089' is-artificial='yes'/>
+            <parameter type-id='type-id-2090' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate' mangled-name='_ZNSt7collateIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='690' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2089' is-artificial='yes'/>
+            <parameter type-id='type-id-2090' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate' mangled-name='_ZNSt7collateIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='690' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2089' is-artificial='yes'/>
+            <parameter type-id='type-id-2090' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_compare' mangled-name='_ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='706' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
@@ -31998,50 +32004,50 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_transform' mangled-name='_ZNKSt7collateIcE12do_transformEPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='720' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE12do_transformEPKcS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-2666'/>
+            <return type-id='type-id-2667'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_hash' mangled-name='_ZNKSt7collateIcE7do_hashEPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='733' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE7do_hashEPKcS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2786' is-artificial='yes'/>
+            <parameter type-id='type-id-2787' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-20'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='collate&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='586' column='1' id='type-id-2766'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='collate&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='586' column='1' id='type-id-2767'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='593' column='1' id='type-id-2787'/>
+          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='593' column='1' id='type-id-2788'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7collateIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='737' column='1' elf-symbol-id='_ZNSt7collateIwE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7collateIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='737' column='1' elf-symbol-id='_ZNSt7collateIwE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_collate' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='599' column='1'/>
+          <var-decl name='_M_c_locale_collate' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='599' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='collate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='613' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2102' is-artificial='yes'/>
+            <parameter type-id='type-id-2103' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='collate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='627' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2102' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2103' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_compare' mangled-name='_ZNKSt7collateIwE10_M_compareEPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/collate_members.cc' line='58' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE10_M_compareEPKwS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
             <return type-id='type-id-6'/>
@@ -32049,7 +32055,7 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_transform' mangled-name='_ZNKSt7collateIwE12_M_transformEPwPKwm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/collate_members.cc' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE12_M_transformEPwPKwm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-91'/>
@@ -32058,22 +32064,22 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='collate' mangled-name='_ZNSt7collateIwEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='613' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIwEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2102' is-artificial='yes'/>
+            <parameter type-id='type-id-2103' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='collate' mangled-name='_ZNSt7collateIwEC2EP15__locale_structm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIwEC2EP15__locale_structm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2102' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2103' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='compare' mangled-name='_ZNKSt7collateIwE7compareEPKwS2_S2_S2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='644' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE7compareEPKwS2_S2_S2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
@@ -32083,15 +32089,15 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='transform' mangled-name='_ZNKSt7collateIwE9transformEPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='663' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE9transformEPKwS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
-            <return type-id='type-id-2787'/>
+            <return type-id='type-id-2788'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='hash' mangled-name='_ZNKSt7collateIwE4hashEPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='677' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE4hashEPKwS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
             <return type-id='type-id-20'/>
@@ -32099,28 +32105,28 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='690' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2102' is-artificial='yes'/>
+            <parameter type-id='type-id-2103' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate' mangled-name='_ZNSt7collateIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='690' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2102' is-artificial='yes'/>
+            <parameter type-id='type-id-2103' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate' mangled-name='_ZNSt7collateIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='690' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7collateIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2102' is-artificial='yes'/>
+            <parameter type-id='type-id-2103' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_compare' mangled-name='_ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='706' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
@@ -32130,23 +32136,23 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_transform' mangled-name='_ZNKSt7collateIwE12do_transformEPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='720' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE12do_transformEPKwS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
-            <return type-id='type-id-2787'/>
+            <return type-id='type-id-2788'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_hash' mangled-name='_ZNKSt7collateIwE7do_hashEPKwS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='733' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIwE7do_hashEPKwS2_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2788' is-artificial='yes'/>
+            <parameter type-id='type-id-2789' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
             <return type-id='type-id-20'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__numpunct_cache&lt;wchar_t&gt;' size-in-bits='2688' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1570' column='1' id='type-id-2759'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__numpunct_cache&lt;wchar_t&gt;' size-in-bits='2688' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1570' column='1' id='type-id-2760'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_grouping' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1572' column='1'/>
         </data-member>
@@ -32175,1276 +32181,1276 @@ 
           <var-decl name='_M_thousands_sep' type-id='type-id-377' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1580' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='640'>
-          <var-decl name='_M_atoms_out' type-id='type-id-2789' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1586' column='1'/>
+          <var-decl name='_M_atoms_out' type-id='type-id-2790' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1586' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1792'>
-          <var-decl name='_M_atoms_in' type-id='type-id-2790' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1592' column='1'/>
+          <var-decl name='_M_atoms_in' type-id='type-id-2791' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1592' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2624'>
           <var-decl name='_M_allocated' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1594' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__numpunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1596' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2760' is-artificial='yes'/>
+            <parameter type-id='type-id-2761' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__numpunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1614' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2760' is-artificial='yes'/>
-            <parameter type-id='type-id-2791'/>
+            <parameter type-id='type-id-2761' is-artificial='yes'/>
+            <parameter type-id='type-id-2792'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__numpunct_cache' mangled-name='_ZNSt16__numpunct_cacheIwEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1596' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIwEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2760' is-artificial='yes'/>
+            <parameter type-id='type-id-2761' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_cache' mangled-name='_ZNSt16__numpunct_cacheIwE8_M_cacheERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIwE8_M_cacheERKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2760' is-artificial='yes'/>
+            <parameter type-id='type-id-2761' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__numpunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1618' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2760' is-artificial='yes'/>
+            <parameter type-id='type-id-2761' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__numpunct_cache' mangled-name='_ZNSt16__numpunct_cacheIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2760' is-artificial='yes'/>
+            <parameter type-id='type-id-2761' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__numpunct_cache' mangled-name='_ZNSt16__numpunct_cacheIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2760' is-artificial='yes'/>
+            <parameter type-id='type-id-2761' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='numpunct&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1643' column='1' id='type-id-2579'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='numpunct&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1643' column='1' id='type-id-2580'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1649' column='1' id='type-id-2792'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1649' column='1' id='type-id-2793'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1650' column='1' id='type-id-2793'/>
+          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1650' column='1' id='type-id-2794'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2759' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1652' column='1' id='type-id-2782'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2760' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1652' column='1' id='type-id-2783'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8numpunctIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1856' column='1' elf-symbol-id='_ZNSt8numpunctIwE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8numpunctIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1856' column='1' elf-symbol-id='_ZNSt8numpunctIwE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2783' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1655' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2784' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1655' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1681' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
-            <parameter type-id='type-id-2783'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2784'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1695' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_numpunct' mangled-name='_ZNSt8numpunctIwE22_M_initialize_numpunctEP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIwE22_M_initialize_numpunctEP15__locale_struct@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='grouping' mangled-name='_ZNKSt8numpunctIwE8groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1753' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE8groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='truename' mangled-name='_ZNKSt8numpunctIwE8truenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1766' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE8truenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2793'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2794'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='falsename' mangled-name='_ZNKSt8numpunctIwE9falsenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1779' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE9falsenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2793'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2794'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='decimal_point' mangled-name='_ZNKSt8numpunctIwE13decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE13decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2792'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2793'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='thousands_sep' mangled-name='_ZNKSt8numpunctIwE13thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1722' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE13thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2792'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2793'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1667' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' mangled-name='_ZNSt8numpunctIwEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1667' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIwEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' mangled-name='_ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1681' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
-            <parameter type-id='type-id-2783'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2784'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' mangled-name='_ZNSt8numpunctIwEC2EP15__locale_structm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIwEC2EP15__locale_structm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct' mangled-name='_ZNSt8numpunctIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct' mangled-name='_ZNSt8numpunctIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2099' is-artificial='yes'/>
+            <parameter type-id='type-id-2100' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_decimal_point' mangled-name='_ZNKSt8numpunctIwE16do_decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE16do_decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2792'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2793'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_thousands_sep' mangled-name='_ZNKSt8numpunctIwE16do_thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1808' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE16do_thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2792'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2793'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_grouping' mangled-name='_ZNKSt8numpunctIwE11do_groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE11do_groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_truename' mangled-name='_ZNKSt8numpunctIwE11do_truenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1834' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE11do_truenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2793'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2794'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_falsename' mangled-name='_ZNKSt8numpunctIwE12do_falsenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIwE12do_falsenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2581' is-artificial='yes'/>
-            <return type-id='type-id-2793'/>
+            <parameter type-id='type-id-2582' is-artificial='yes'/>
+            <return type-id='type-id-2794'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='num_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1917' column='1' id='type-id-990'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1923' column='1' id='type-id-2697'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1923' column='1' id='type-id-2698'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2566' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1924' column='1' id='type-id-2794'/>
+          <typedef-decl name='iter_type' type-id='type-id-2567' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1924' column='1' id='type-id-2795'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2237' column='1' elf-symbol-id='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2237' column='1' elf-symbol-id='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='num_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1938' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2088' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1065'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1066'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2069' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1046'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1047'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2059' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1045'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1046'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2026' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1064'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1065'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2021' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1063'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1064'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1062'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1063'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2015' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1061'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1062'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2000' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1060'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1061'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1059'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1060'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1058'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1059'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_find&lt;char&gt;' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_M_findIcEEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEiE6__typeEPKS9_mS9_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2120' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2616'/>
+            <return type-id='type-id-2617'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='num_get' mangled-name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2088' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long long unsigned int&gt;' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1064'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1065'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long long int&gt;' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1063'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1064'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long unsigned int&gt;' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1061'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1062'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;unsigned int&gt;' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1059'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1060'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;short unsigned int&gt;' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1058'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1059'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_float' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2733'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2734'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long int&gt;' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2566'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1060'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2567'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1061'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2088' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_get' mangled-name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2088' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_get' mangled-name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2088' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='591' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1062'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1063'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2175' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1060'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1061'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1058'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1059'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1059'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1060'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1061'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1062'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1063'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1064'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1064'/>
-            <return type-id='type-id-2794'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1065'/>
+            <return type-id='type-id-2795'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2795'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1045'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1046'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1046'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1047'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='11'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='12'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2574' is-artificial='yes'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2794'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2575' is-artificial='yes'/>
             <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1065'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1066'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='num_get&lt;wchar_t, std::istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1917' column='1' id='type-id-1005'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1923' column='1' id='type-id-2796'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1923' column='1' id='type-id-2797'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2570' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1924' column='1' id='type-id-2797'/>
+          <typedef-decl name='iter_type' type-id='type-id-2571' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1924' column='1' id='type-id-2798'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2237' column='1' elf-symbol-id='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2237' column='1' elf-symbol-id='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='num_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1938' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2101' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1065'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1066'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2069' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1046'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1047'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2059' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1045'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1046'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2026' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1064'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1065'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2021' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1063'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1064'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1062'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1063'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2015' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1061'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1062'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2000' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1060'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1061'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1059'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1060'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1058'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1059'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_find&lt;wchar_t&gt;' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_M_findIwEEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEiE6__typeEPKS9_mS9_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2120' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-377'/>
-            <return type-id='type-id-2616'/>
+            <return type-id='type-id-2617'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='num_get' mangled-name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2101' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long long unsigned int&gt;' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1064'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1065'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long long int&gt;' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1063'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1064'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long unsigned int&gt;' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1061'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1062'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;unsigned int&gt;' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1059'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1060'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;short unsigned int&gt;' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1058'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1059'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
-          <function-decl name='_M_extract_float' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2733'/>
-            <return type-id='type-id-2570'/>
+          <function-decl name='_M_extract_float' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2734'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_int&lt;long int&gt;' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='371' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2570'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1060'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2571'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1061'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2101' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_get' mangled-name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2101' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_get' mangled-name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2100' is-artificial='yes'/>
+            <parameter type-id='type-id-2101' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='591' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1062'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1063'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2175' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1060'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1061'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1058'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1059'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1059'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1060'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1061'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1062'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1063'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1064'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1064'/>
-            <return type-id='type-id-2797'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1065'/>
+            <return type-id='type-id-2798'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1045'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1046'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1046'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1047'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='11'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='12'>
           <function-decl name='do_get' mangled-name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2575' is-artificial='yes'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2797'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1065'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2576' is-artificial='yes'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2798'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1066'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='num_put&lt;wchar_t, std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2253' column='1' id='type-id-1003'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2259' column='1' id='type-id-2798'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2259' column='1' id='type-id-2799'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2315' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2260' column='1' id='type-id-2799'/>
+          <typedef-decl name='iter_type' type-id='type-id-2316' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2260' column='1' id='type-id-2800'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2517' column='1' elf-symbol-id='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2517' column='1' elf-symbol-id='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='num_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2274' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2101' is-artificial='yes'/>
+            <parameter type-id='type-id-2102' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='num_put' mangled-name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2101' is-artificial='yes'/>
+            <parameter type-id='type-id-2102' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_group_int' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcmwRSt8ios_basePwS9_Ri' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='835' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcmwRSt8ios_basePwS9_Ri@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-377'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-334'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_group_float' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcmwPKwPwS9_Ri' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='935' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcmwPKwPwS9_Ri@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-334'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_pad' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwlRSt8ios_basePwPKwRi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='776' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwlRSt8ios_basePwPKwRi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-342'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_float&lt;long double&gt;' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIeEES3_S3_RSt8ios_basewcT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='971' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIeEES3_S3_RSt8ios_basewcT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
-            <parameter type-id='type-id-2315'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2316'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_float&lt;double&gt;' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIdEES3_S3_RSt8ios_basewcT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='971' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIdEES3_S3_RSt8ios_basewcT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
-            <parameter type-id='type-id-2315'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2316'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long long unsigned int&gt;' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIyEES3_S3_RSt8ios_basewT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIyEES3_S3_RSt8ios_basewT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
-            <parameter type-id='type-id-2315'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2316'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long long int&gt;' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIxEES3_S3_RSt8ios_basewT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIxEES3_S3_RSt8ios_basewT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
-            <parameter type-id='type-id-2315'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2316'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long unsigned int&gt;' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intImEES3_S3_RSt8ios_basewT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intImEES3_S3_RSt8ios_basewT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
-            <parameter type-id='type-id-2315'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2316'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long int&gt;' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIlEES3_S3_RSt8ios_basewT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIlEES3_S3_RSt8ios_basewT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
-            <parameter type-id='type-id-2315'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2316'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2453' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2101' is-artificial='yes'/>
+            <parameter type-id='type-id-2102' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_put' mangled-name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2101' is-artificial='yes'/>
+            <parameter type-id='type-id-2102' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_put' mangled-name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2101' is-artificial='yes'/>
+            <parameter type-id='type-id-2102' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1090' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2488' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2799'/>
+            <return type-id='type-id-2800'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2800' is-artificial='yes'/>
+            <parameter type-id='type-id-2801' is-artificial='yes'/>
+            <parameter type-id='type-id-2800'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2799'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2798'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='52' column='1' id='type-id-2801'>
+      <class-decl name='time_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='52' column='1' id='type-id-2802'>
         <member-type access='private'>
-          <enum-decl name='dateorder' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='55' column='1' id='type-id-2802'>
+          <enum-decl name='dateorder' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='55' column='1' id='type-id-2803'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='no_order' value='0'/>
             <enumerator name='dmy' value='1'/>
@@ -33454,10 +33460,10 @@ 
           </enum-decl>
         </member-type>
       </class-decl>
-      <class-decl name='__timepunct_cache&lt;char&gt;' size-in-bits='3200' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='59' column='1' id='type-id-2652'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__timepunct_cache&lt;char&gt;' size-in-bits='3200' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='59' column='1' id='type-id-2653'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' static='yes'>
-          <var-decl name='_S_timezones' type-id='type-id-2746' mangled-name='_ZNSt17__timepunct_cacheIcE12_S_timezonesE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale_facets.cc' line='34' column='1' elf-symbol-id='_ZNSt17__timepunct_cacheIcE12_S_timezonesE@@GLIBCXX_3.4'/>
+          <var-decl name='_S_timezones' type-id='type-id-2747' mangled-name='_ZNSt17__timepunct_cacheIcE12_S_timezonesE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale_facets.cc' line='34' column='1' elf-symbol-id='_ZNSt17__timepunct_cacheIcE12_S_timezonesE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_date_format' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='64' column='1'/>
@@ -33605,51 +33611,51 @@ 
         </data-member>
         <member-function access='public'>
           <function-decl name='__timepunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2763' is-artificial='yes'/>
+            <parameter type-id='type-id-2764' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2763' is-artificial='yes'/>
-            <parameter type-id='type-id-2654'/>
+            <parameter type-id='type-id-2764' is-artificial='yes'/>
+            <parameter type-id='type-id-2655'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__timepunct_cache' mangled-name='_ZNSt17__timepunct_cacheIcEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17__timepunct_cacheIcEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2763' is-artificial='yes'/>
+            <parameter type-id='type-id-2764' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2763' is-artificial='yes'/>
+            <parameter type-id='type-id-2764' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct_cache' mangled-name='_ZNSt17__timepunct_cacheIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17__timepunct_cacheIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2763' is-artificial='yes'/>
+            <parameter type-id='type-id-2764' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct_cache' mangled-name='_ZNSt17__timepunct_cacheIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17__timepunct_cacheIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2763' is-artificial='yes'/>
+            <parameter type-id='type-id-2764' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__timepunct_cache&lt;wchar_t&gt;' size-in-bits='3200' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='59' column='1' id='type-id-2764'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__timepunct_cache&lt;wchar_t&gt;' size-in-bits='3200' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='59' column='1' id='type-id-2765'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' static='yes'>
-          <var-decl name='_S_timezones' type-id='type-id-2748' mangled-name='_ZNSt17__timepunct_cacheIwE12_S_timezonesE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale_facets.cc' line='43' column='1' elf-symbol-id='_ZNSt17__timepunct_cacheIwE12_S_timezonesE@@GLIBCXX_3.4'/>
+          <var-decl name='_S_timezones' type-id='type-id-2749' mangled-name='_ZNSt17__timepunct_cacheIwE12_S_timezonesE' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/locale_facets.cc' line='43' column='1' elf-symbol-id='_ZNSt17__timepunct_cacheIwE12_S_timezonesE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_date_format' type-id='type-id-342' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='64' column='1'/>
@@ -33797,67 +33803,67 @@ 
         </data-member>
         <member-function access='public'>
           <function-decl name='__timepunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2765' is-artificial='yes'/>
+            <parameter type-id='type-id-2766' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2765' is-artificial='yes'/>
-            <parameter type-id='type-id-2803'/>
+            <parameter type-id='type-id-2766' is-artificial='yes'/>
+            <parameter type-id='type-id-2804'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__timepunct_cache' mangled-name='_ZNSt17__timepunct_cacheIwEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17__timepunct_cacheIwEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2765' is-artificial='yes'/>
+            <parameter type-id='type-id-2766' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2765' is-artificial='yes'/>
+            <parameter type-id='type-id-2766' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct_cache' mangled-name='_ZNSt17__timepunct_cacheIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17__timepunct_cacheIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2765' is-artificial='yes'/>
+            <parameter type-id='type-id-2766' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct_cache' mangled-name='_ZNSt17__timepunct_cacheIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17__timepunct_cacheIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2765' is-artificial='yes'/>
+            <parameter type-id='type-id-2766' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__timepunct&lt;char&gt;' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='177' column='1' id='type-id-2761'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__timepunct&lt;char&gt;' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='177' column='1' id='type-id-2762'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2652' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='183' column='1' id='type-id-2716'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2653' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='183' column='1' id='type-id-2717'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt11__timepunctIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='322' column='1' elf-symbol-id='_ZNSt11__timepunctIcE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt11__timepunctIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='322' column='1' elf-symbol-id='_ZNSt11__timepunctIcE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2717' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='186' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2718' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='186' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='192'>
-          <var-decl name='_M_c_locale_timepunct' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='187' column='1'/>
+          <var-decl name='_M_c_locale_timepunct' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='187' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='256'>
           <var-decl name='_M_name_timepunct' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='188' column='1'/>
         </data-member>
         <member-function access='private' const='yes'>
           <function-decl name='_M_put' mangled-name='_ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/time_members.cc' line='42' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-4'/>
@@ -33867,30 +33873,30 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_timepunct' mangled-name='_ZNSt11__timepunctIcE23_M_initialize_timepunctEP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/time_members.cc' line='66' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIcE23_M_initialize_timepunctEP15__locale_struct@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
-            <parameter type-id='type-id-2717'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2718'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -33898,58 +33904,58 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_days_abbreviated' mangled-name='_ZNKSt11__timepunctIcE19_M_days_abbreviatedEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE19_M_days_abbreviatedEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_days' mangled-name='_ZNKSt11__timepunctIcE7_M_daysEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE7_M_daysEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_date_time_formats' mangled-name='_ZNKSt11__timepunctIcE20_M_date_time_formatsEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE20_M_date_time_formatsEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_date_formats' mangled-name='_ZNKSt11__timepunctIcE15_M_date_formatsEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE15_M_date_formatsEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_time_formats' mangled-name='_ZNKSt11__timepunctIcE15_M_time_formatsEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE15_M_time_formatsEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' mangled-name='_ZNSt11__timepunctIcEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIcEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' mangled-name='_ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
-            <parameter type-id='type-id-2717'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2718'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' mangled-name='_ZNSt11__timepunctIcEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIcEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -33957,74 +33963,74 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_am_pm_format' mangled-name='_ZNKSt11__timepunctIcE15_M_am_pm_formatEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE15_M_am_pm_formatEPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_am_pm' mangled-name='_ZNKSt11__timepunctIcE8_M_am_pmEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE8_M_am_pmEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_months' mangled-name='_ZNKSt11__timepunctIcE9_M_monthsEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='279' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE9_M_monthsEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_months_abbreviated' mangled-name='_ZNKSt11__timepunctIcE21_M_months_abbreviatedEPPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='296' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE21_M_months_abbreviatedEPPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2804' is-artificial='yes'/>
+            <parameter type-id='type-id-2805' is-artificial='yes'/>
             <parameter type-id='type-id-672'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct' mangled-name='_ZNSt11__timepunctIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct' mangled-name='_ZNSt11__timepunctIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2094' is-artificial='yes'/>
+            <parameter type-id='type-id-2095' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__timepunct&lt;wchar_t&gt;' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='177' column='1' id='type-id-2762'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__timepunct&lt;wchar_t&gt;' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='177' column='1' id='type-id-2763'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2764' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='183' column='1' id='type-id-2805'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2765' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='183' column='1' id='type-id-2806'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt11__timepunctIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='322' column='1' elf-symbol-id='_ZNSt11__timepunctIwE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt11__timepunctIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='322' column='1' elf-symbol-id='_ZNSt11__timepunctIwE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2806' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='186' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2807' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='186' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='192'>
-          <var-decl name='_M_c_locale_timepunct' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='187' column='1'/>
+          <var-decl name='_M_c_locale_timepunct' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='187' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='256'>
           <var-decl name='_M_name_timepunct' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='188' column='1'/>
         </data-member>
         <member-function access='private' const='yes'>
           <function-decl name='_M_put' mangled-name='_ZNKSt11__timepunctIwE6_M_putEPwmPKwPK2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/time_members.cc' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE6_M_putEPwmPKwPK2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-342'/>
@@ -34034,30 +34040,30 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_timepunct' mangled-name='_ZNSt11__timepunctIwE23_M_initialize_timepunctEP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/time_members.cc' line='222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIwE23_M_initialize_timepunctEP15__locale_struct@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
-            <parameter type-id='type-id-2806'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2807'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -34065,58 +34071,58 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_days_abbreviated' mangled-name='_ZNKSt11__timepunctIwE19_M_days_abbreviatedEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE19_M_days_abbreviatedEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_days' mangled-name='_ZNKSt11__timepunctIwE7_M_daysEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE7_M_daysEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_date_time_formats' mangled-name='_ZNKSt11__timepunctIwE20_M_date_time_formatsEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE20_M_date_time_formatsEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_date_formats' mangled-name='_ZNKSt11__timepunctIwE15_M_date_formatsEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE15_M_date_formatsEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_time_formats' mangled-name='_ZNKSt11__timepunctIwE15_M_time_formatsEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE15_M_time_formatsEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' mangled-name='_ZNSt11__timepunctIwEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIwEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' mangled-name='_ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
-            <parameter type-id='type-id-2806'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2807'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__timepunct' mangled-name='_ZNSt11__timepunctIwEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIwEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -34124,667 +34130,667 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_am_pm_format' mangled-name='_ZNKSt11__timepunctIwE15_M_am_pm_formatEPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE15_M_am_pm_formatEPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-342'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_am_pm' mangled-name='_ZNKSt11__timepunctIwE8_M_am_pmEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE8_M_am_pmEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_months' mangled-name='_ZNKSt11__timepunctIwE9_M_monthsEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='279' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE9_M_monthsEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='_M_months_abbreviated' mangled-name='_ZNKSt11__timepunctIwE21_M_months_abbreviatedEPPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='296' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIwE21_M_months_abbreviatedEPPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2807' is-artificial='yes'/>
+            <parameter type-id='type-id-2808' is-artificial='yes'/>
             <parameter type-id='type-id-783'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct' mangled-name='_ZNSt11__timepunctIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__timepunct' mangled-name='_ZNSt11__timepunctIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11__timepunctIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2107' is-artificial='yes'/>
+            <parameter type-id='type-id-2108' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='368' column='1' id='type-id-2701'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2801'/>
+      <class-decl name='time_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='368' column='1' id='type-id-2702'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2802'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='374' column='1' id='type-id-2705'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='374' column='1' id='type-id-2706'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2566' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='375' column='1' id='type-id-2808'/>
+          <typedef-decl name='iter_type' type-id='type-id-2567' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='375' column='1' id='type-id-2809'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='682' column='1' elf-symbol-id='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='682' column='1' elf-symbol-id='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='time_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2096' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='time_get' mangled-name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2096' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='date_order' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='407' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <return type-id='type-id-2802'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <return type-id='type-id-2803'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_time' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2808'/>
+            <return type-id='type-id-2809'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_date' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2808'/>
+            <return type-id='type-id-2809'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_weekday' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2808'/>
+            <return type-id='type-id-2809'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_monthname' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2808'/>
+            <return type-id='type-id-2809'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_year' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2808'/>
+            <return type-id='type-id-2809'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_num' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='841' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-1057'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_wday_or_month' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE24_M_extract_wday_or_monthES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE24_M_extract_wday_or_monthES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate@@GLIBCXX_3.4.14'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-1057'/>
             <parameter type-id='type-id-672'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_name' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE15_M_extract_nameES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='884' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE15_M_extract_nameES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-1057'/>
             <parameter type-id='type-id-672'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_via_format' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-2566'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='546' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2096' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get' mangled-name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2096' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get' mangled-name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2095' is-artificial='yes'/>
+            <parameter type-id='type-id-2096' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_date_order' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <return type-id='type-id-2802'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <return type-id='type-id-2803'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get_time' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1029' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2566'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_get_date' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1046' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2566'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_get_weekday' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1063' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2566'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_get_monthname' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1091' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2566'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_get_year' mangled-name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2704' is-artificial='yes'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2808'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2705' is-artificial='yes'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2809'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2566'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_get&lt;wchar_t, std::istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='368' column='1' id='type-id-2784'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2801'/>
+      <class-decl name='time_get&lt;wchar_t, std::istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='368' column='1' id='type-id-2785'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2802'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='374' column='1' id='type-id-2809'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='374' column='1' id='type-id-2810'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2570' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='375' column='1' id='type-id-2810'/>
+          <typedef-decl name='iter_type' type-id='type-id-2571' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='375' column='1' id='type-id-2811'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='682' column='1' elf-symbol-id='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='682' column='1' elf-symbol-id='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='time_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2109' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='time_get' mangled-name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2109' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='date_order' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='407' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <return type-id='type-id-2802'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <return type-id='type-id-2803'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_time' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2810'/>
+            <return type-id='type-id-2811'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_date' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2810'/>
+            <return type-id='type-id-2811'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_weekday' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2810'/>
+            <return type-id='type-id-2811'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_monthname' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2810'/>
+            <return type-id='type-id-2811'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get_year' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2810'/>
+            <return type-id='type-id-2811'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_num' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='841' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-1057'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_wday_or_month' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE24_M_extract_wday_or_monthES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE24_M_extract_wday_or_monthES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate@@GLIBCXX_3.4.14'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-1057'/>
             <parameter type-id='type-id-783'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_name' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE15_M_extract_nameES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='884' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE15_M_extract_nameES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-1057'/>
             <parameter type-id='type-id-783'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract_via_format' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKw@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
             <parameter type-id='type-id-342'/>
-            <return type-id='type-id-2570'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='546' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2109' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get' mangled-name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2109' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get' mangled-name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2108' is-artificial='yes'/>
+            <parameter type-id='type-id-2109' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_date_order' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <return type-id='type-id-2802'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <return type-id='type-id-2803'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get_time' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1029' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2570'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_get_date' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1046' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2570'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_get_weekday' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1063' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2570'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_get_monthname' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1091' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2570'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_get_year' mangled-name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2811' is-artificial='yes'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2810'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
+            <parameter type-id='type-id-2812' is-artificial='yes'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2811'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
             <parameter type-id='type-id-236'/>
-            <return type-id='type-id-2570'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='715' column='1' id='type-id-2707'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='time_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='715' column='1' id='type-id-2708'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='721' column='1' id='type-id-2812'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='721' column='1' id='type-id-2813'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2311' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='722' column='1' id='type-id-2813'/>
+          <typedef-decl name='iter_type' type-id='type-id-2312' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='722' column='1' id='type-id-2814'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='807' column='1' elf-symbol-id='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='807' column='1' elf-symbol-id='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='time_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='736' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2096' is-artificial='yes'/>
+            <parameter type-id='type-id-2097' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='time_put' mangled-name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='736' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2096' is-artificial='yes'/>
+            <parameter type-id='type-id-2097' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2710' is-artificial='yes'/>
+            <parameter type-id='type-id-2711' is-artificial='yes'/>
+            <parameter type-id='type-id-2814'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2813'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2812'/>
             <parameter type-id='type-id-255'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2813'/>
+            <return type-id='type-id-2814'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2710' is-artificial='yes'/>
+            <parameter type-id='type-id-2711' is-artificial='yes'/>
+            <parameter type-id='type-id-2814'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2813'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2812'/>
             <parameter type-id='type-id-255'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2096' is-artificial='yes'/>
+            <parameter type-id='type-id-2097' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put' mangled-name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2096' is-artificial='yes'/>
+            <parameter type-id='type-id-2097' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put' mangled-name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2096' is-artificial='yes'/>
+            <parameter type-id='type-id-2097' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_put' mangled-name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2710' is-artificial='yes'/>
+            <parameter type-id='type-id-2711' is-artificial='yes'/>
+            <parameter type-id='type-id-2814'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2813'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2812'/>
             <parameter type-id='type-id-255'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_put&lt;wchar_t, std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='715' column='1' id='type-id-2785'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='time_put&lt;wchar_t, std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='715' column='1' id='type-id-2786'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='721' column='1' id='type-id-2814'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='721' column='1' id='type-id-2815'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2315' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='722' column='1' id='type-id-2815'/>
+          <typedef-decl name='iter_type' type-id='type-id-2316' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='722' column='1' id='type-id-2816'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='807' column='1' elf-symbol-id='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='807' column='1' elf-symbol-id='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='time_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='736' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2109' is-artificial='yes'/>
+            <parameter type-id='type-id-2110' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='time_put' mangled-name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='736' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2109' is-artificial='yes'/>
+            <parameter type-id='type-id-2110' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2816' is-artificial='yes'/>
+            <parameter type-id='type-id-2817' is-artificial='yes'/>
+            <parameter type-id='type-id-2816'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2815'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2814'/>
             <parameter type-id='type-id-255'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2815'/>
+            <return type-id='type-id-2816'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2816' is-artificial='yes'/>
+            <parameter type-id='type-id-2817' is-artificial='yes'/>
+            <parameter type-id='type-id-2816'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2815'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2814'/>
             <parameter type-id='type-id-255'/>
             <parameter type-id='type-id-342'/>
             <parameter type-id='type-id-342'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='782' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2109' is-artificial='yes'/>
+            <parameter type-id='type-id-2110' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put' mangled-name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2109' is-artificial='yes'/>
+            <parameter type-id='type-id-2110' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put' mangled-name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2109' is-artificial='yes'/>
+            <parameter type-id='type-id-2110' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_put' mangled-name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='1177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2816' is-artificial='yes'/>
+            <parameter type-id='type-id-2817' is-artificial='yes'/>
+            <parameter type-id='type-id-2816'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2815'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2814'/>
             <parameter type-id='type-id-255'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='money_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='840' column='1' id='type-id-2817'>
+      <class-decl name='money_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='840' column='1' id='type-id-2818'>
         <member-type access='private'>
-          <enum-decl name='part' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='843' column='1' id='type-id-2818'>
+          <enum-decl name='part' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='843' column='1' id='type-id-2819'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='none' value='0'/>
             <enumerator name='space' value='1'/>
@@ -34794,14 +34800,14 @@ 
           </enum-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='pattern' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='844' column='1' id='type-id-2750'>
+          <class-decl name='pattern' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='844' column='1' id='type-id-2751'>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='field' type-id='type-id-620' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='844' column='1'/>
             </data-member>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='849' column='1' id='type-id-2819'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='849' column='1' id='type-id-2820'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='_S_minus' value='0'/>
             <enumerator name='_S_zero' value='1'/>
@@ -34809,7 +34815,7 @@ 
           </enum-decl>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='_S_default_pattern' type-id='type-id-2751' mangled-name='_ZNSt10money_base18_S_default_patternE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='846' column='1' elf-symbol-id='_ZNSt10money_base18_S_default_patternE@@GLIBCXX_3.4'/>
+          <var-decl name='_S_default_pattern' type-id='type-id-2752' mangled-name='_ZNSt10money_base18_S_default_patternE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='846' column='1' elf-symbol-id='_ZNSt10money_base18_S_default_patternE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='_S_atoms' type-id='type-id-4' mangled-name='_ZNSt10money_base8_S_atomsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='857' column='1' elf-symbol-id='_ZNSt10money_base8_S_atomsE@@GLIBCXX_3.4'/>
@@ -34819,12 +34825,12 @@ 
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
-            <return type-id='type-id-2750'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__moneypunct_cache&lt;char, false&gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2638'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__moneypunct_cache&lt;char, false&gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2639'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_grouping' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='868' column='1'/>
         </data-member>
@@ -34862,69 +34868,69 @@ 
           <var-decl name='_M_frac_digits' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='879' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='736'>
-          <var-decl name='_M_pos_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
+          <var-decl name='_M_pos_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='768'>
-          <var-decl name='_M_neg_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
+          <var-decl name='_M_neg_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='800'>
-          <var-decl name='_M_atoms' type-id='type-id-2623' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
+          <var-decl name='_M_atoms' type-id='type-id-2624' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='888'>
           <var-decl name='_M_allocated' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='888' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2752' is-artificial='yes'/>
+            <parameter type-id='type-id-2753' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='911' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2752' is-artificial='yes'/>
-            <parameter type-id='type-id-2640'/>
+            <parameter type-id='type-id-2753' is-artificial='yes'/>
+            <parameter type-id='type-id-2641'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb0EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb0EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2752' is-artificial='yes'/>
+            <parameter type-id='type-id-2753' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb0EE8_M_cacheERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb0EE8_M_cacheERKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2752' is-artificial='yes'/>
+            <parameter type-id='type-id-2753' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2752' is-artificial='yes'/>
+            <parameter type-id='type-id-2753' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb0EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb0EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2752' is-artificial='yes'/>
+            <parameter type-id='type-id-2753' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb0EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb0EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2752' is-artificial='yes'/>
+            <parameter type-id='type-id-2753' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__moneypunct_cache&lt;char, true&gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2642'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__moneypunct_cache&lt;char, true&gt;' size-in-bits='896' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2643'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_grouping' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='868' column='1'/>
         </data-member>
@@ -34962,69 +34968,69 @@ 
           <var-decl name='_M_frac_digits' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='879' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='736'>
-          <var-decl name='_M_pos_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
+          <var-decl name='_M_pos_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='768'>
-          <var-decl name='_M_neg_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
+          <var-decl name='_M_neg_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='800'>
-          <var-decl name='_M_atoms' type-id='type-id-2623' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
+          <var-decl name='_M_atoms' type-id='type-id-2624' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='888'>
           <var-decl name='_M_allocated' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='888' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2753' is-artificial='yes'/>
+            <parameter type-id='type-id-2754' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='911' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2753' is-artificial='yes'/>
-            <parameter type-id='type-id-2644'/>
+            <parameter type-id='type-id-2754' is-artificial='yes'/>
+            <parameter type-id='type-id-2645'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb1EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb1EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2753' is-artificial='yes'/>
+            <parameter type-id='type-id-2754' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb1EE8_M_cacheERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb1EE8_M_cacheERKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2753' is-artificial='yes'/>
+            <parameter type-id='type-id-2754' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2753' is-artificial='yes'/>
+            <parameter type-id='type-id-2754' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb1EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb1EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2753' is-artificial='yes'/>
+            <parameter type-id='type-id-2754' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIcLb1EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIcLb1EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2753' is-artificial='yes'/>
+            <parameter type-id='type-id-2754' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__moneypunct_cache&lt;wchar_t, false&gt;' size-in-bits='1280' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2754'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__moneypunct_cache&lt;wchar_t, false&gt;' size-in-bits='1280' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2755'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_grouping' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='868' column='1'/>
         </data-member>
@@ -35062,69 +35068,69 @@ 
           <var-decl name='_M_frac_digits' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='879' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='800'>
-          <var-decl name='_M_pos_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
+          <var-decl name='_M_pos_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='832'>
-          <var-decl name='_M_neg_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
+          <var-decl name='_M_neg_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='864'>
-          <var-decl name='_M_atoms' type-id='type-id-2820' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
+          <var-decl name='_M_atoms' type-id='type-id-2821' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1216'>
           <var-decl name='_M_allocated' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='888' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2755' is-artificial='yes'/>
+            <parameter type-id='type-id-2756' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='911' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2755' is-artificial='yes'/>
-            <parameter type-id='type-id-2821'/>
+            <parameter type-id='type-id-2756' is-artificial='yes'/>
+            <parameter type-id='type-id-2822'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb0EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb0EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2755' is-artificial='yes'/>
+            <parameter type-id='type-id-2756' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb0EE8_M_cacheERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb0EE8_M_cacheERKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2755' is-artificial='yes'/>
+            <parameter type-id='type-id-2756' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2755' is-artificial='yes'/>
+            <parameter type-id='type-id-2756' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb0EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb0EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2755' is-artificial='yes'/>
+            <parameter type-id='type-id-2756' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb0EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb0EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2755' is-artificial='yes'/>
+            <parameter type-id='type-id-2756' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__moneypunct_cache&lt;wchar_t, true&gt;' size-in-bits='1280' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2756'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__moneypunct_cache&lt;wchar_t, true&gt;' size-in-bits='1280' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='866' column='1' id='type-id-2757'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_grouping' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='868' column='1'/>
         </data-member>
@@ -35162,100 +35168,100 @@ 
           <var-decl name='_M_frac_digits' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='879' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='800'>
-          <var-decl name='_M_pos_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
+          <var-decl name='_M_pos_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='880' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='832'>
-          <var-decl name='_M_neg_format' type-id='type-id-2750' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
+          <var-decl name='_M_neg_format' type-id='type-id-2751' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='881' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='864'>
-          <var-decl name='_M_atoms' type-id='type-id-2820' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
+          <var-decl name='_M_atoms' type-id='type-id-2821' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='886' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1216'>
           <var-decl name='_M_allocated' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='888' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2757' is-artificial='yes'/>
+            <parameter type-id='type-id-2758' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='911' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2757' is-artificial='yes'/>
-            <parameter type-id='type-id-2822'/>
+            <parameter type-id='type-id-2758' is-artificial='yes'/>
+            <parameter type-id='type-id-2823'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb1EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb1EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2757' is-artificial='yes'/>
+            <parameter type-id='type-id-2758' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb1EE8_M_cacheERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb1EE8_M_cacheERKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2757' is-artificial='yes'/>
+            <parameter type-id='type-id-2758' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2757' is-artificial='yes'/>
+            <parameter type-id='type-id-2758' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb1EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb1EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2757' is-artificial='yes'/>
+            <parameter type-id='type-id-2758' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__moneypunct_cache' mangled-name='_ZNSt18__moneypunct_cacheIwLb1EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18__moneypunct_cacheIwLb1EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2757' is-artificial='yes'/>
+            <parameter type-id='type-id-2758' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct&lt;char, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2689'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2817'/>
+      <class-decl name='moneypunct&lt;char, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2690'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2818'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2823'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2824'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2824'/>
+          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2825'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2638' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2770'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2639' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2771'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt10moneypunctIcLb0EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIcLb0EE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt10moneypunctIcLb0EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIcLb0EE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2771' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2772' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt10moneypunctIcLb0EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='951' column='1' elf-symbol-id='_ZNSt10moneypunctIcLb0EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
-            <parameter type-id='type-id-2771'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2772'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35263,92 +35269,92 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_moneypunct' mangled-name='_ZNSt10moneypunctIcLb0EE24_M_initialize_moneypunctEP15__locale_structPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='359' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb0EE24_M_initialize_moneypunctEP15__locale_structPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='decimal_point' mangled-name='_ZNKSt10moneypunctIcLb0EE13decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE13decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2823'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2824'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='thousands_sep' mangled-name='_ZNKSt10moneypunctIcLb0EE13thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE13thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2823'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2824'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='frac_digits' mangled-name='_ZNKSt10moneypunctIcLb0EE11frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE11frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='grouping' mangled-name='_ZNKSt10moneypunctIcLb0EE8groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1048' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE8groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='curr_symbol' mangled-name='_ZNKSt10moneypunctIcLb0EE11curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE11curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2824'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2825'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='positive_sign' mangled-name='_ZNKSt10moneypunctIcLb0EE13positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1078' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE13positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2824'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2825'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='negative_sign' mangled-name='_ZNKSt10moneypunctIcLb0EE13negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1095' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE13negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2824'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2825'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='pos_format' mangled-name='_ZNKSt10moneypunctIcLb0EE10pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE10pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='neg_format' mangled-name='_ZNKSt10moneypunctIcLb0EE10neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE10neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIcLb0EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb0EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIcLb0EEC2EPSt18__moneypunct_cacheIcLb0EEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb0EEC2EPSt18__moneypunct_cacheIcLb0EEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
-            <parameter type-id='type-id-2771'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2772'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35356,113 +35362,113 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='524' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIcLb0EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb0EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIcLb0EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb0EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2090' is-artificial='yes'/>
+            <parameter type-id='type-id-2091' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_decimal_point' mangled-name='_ZNKSt10moneypunctIcLb0EE16do_decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE16do_decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2823'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2824'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_thousands_sep' mangled-name='_ZNKSt10moneypunctIcLb0EE16do_thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE16do_thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2823'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2824'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_grouping' mangled-name='_ZNKSt10moneypunctIcLb0EE11do_groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE11do_groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_curr_symbol' mangled-name='_ZNKSt10moneypunctIcLb0EE14do_curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE14do_curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2824'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2825'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_positive_sign' mangled-name='_ZNKSt10moneypunctIcLb0EE16do_positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE16do_positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2824'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2825'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_negative_sign' mangled-name='_ZNKSt10moneypunctIcLb0EE16do_negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE16do_negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2824'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2825'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_frac_digits' mangled-name='_ZNKSt10moneypunctIcLb0EE14do_frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE14do_frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_pos_format' mangled-name='_ZNKSt10moneypunctIcLb0EE13do_pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE13do_pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_neg_format' mangled-name='_ZNKSt10moneypunctIcLb0EE13do_neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb0EE13do_neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2692' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2693' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct&lt;char, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2693'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2817'/>
+      <class-decl name='moneypunct&lt;char, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2694'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2818'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2825'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2826'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2826'/>
+          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2827'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2642' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2772'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2643' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2773'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt10moneypunctIcLb1EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIcLb1EE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt10moneypunctIcLb1EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIcLb1EE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2773' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2774' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt10moneypunctIcLb1EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='951' column='1' elf-symbol-id='_ZNSt10moneypunctIcLb1EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
-            <parameter type-id='type-id-2773'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2774'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35470,92 +35476,92 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_moneypunct' mangled-name='_ZNSt10moneypunctIcLb1EE24_M_initialize_moneypunctEP15__locale_structPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='208' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb1EE24_M_initialize_moneypunctEP15__locale_structPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='decimal_point' mangled-name='_ZNKSt10moneypunctIcLb1EE13decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE13decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2825'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2826'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='thousands_sep' mangled-name='_ZNKSt10moneypunctIcLb1EE13thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE13thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2825'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2826'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='frac_digits' mangled-name='_ZNKSt10moneypunctIcLb1EE11frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE11frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='grouping' mangled-name='_ZNKSt10moneypunctIcLb1EE8groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1048' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE8groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='curr_symbol' mangled-name='_ZNKSt10moneypunctIcLb1EE11curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE11curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2826'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2827'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='positive_sign' mangled-name='_ZNKSt10moneypunctIcLb1EE13positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1078' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE13positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2826'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2827'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='negative_sign' mangled-name='_ZNKSt10moneypunctIcLb1EE13negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1095' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE13negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2826'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2827'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='pos_format' mangled-name='_ZNKSt10moneypunctIcLb1EE10pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE10pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='neg_format' mangled-name='_ZNKSt10moneypunctIcLb1EE10neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE10neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIcLb1EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb1EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIcLb1EEC2EPSt18__moneypunct_cacheIcLb1EEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb1EEC2EPSt18__moneypunct_cacheIcLb1EEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
-            <parameter type-id='type-id-2773'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2774'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35563,113 +35569,113 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='509' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIcLb1EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb1EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIcLb1EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIcLb1EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2091' is-artificial='yes'/>
+            <parameter type-id='type-id-2092' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_decimal_point' mangled-name='_ZNKSt10moneypunctIcLb1EE16do_decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE16do_decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2825'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2826'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_thousands_sep' mangled-name='_ZNKSt10moneypunctIcLb1EE16do_thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE16do_thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2825'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2826'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_grouping' mangled-name='_ZNKSt10moneypunctIcLb1EE11do_groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE11do_groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_curr_symbol' mangled-name='_ZNKSt10moneypunctIcLb1EE14do_curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE14do_curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2826'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2827'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_positive_sign' mangled-name='_ZNKSt10moneypunctIcLb1EE16do_positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE16do_positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2826'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2827'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_negative_sign' mangled-name='_ZNKSt10moneypunctIcLb1EE16do_negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE16do_negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2826'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2827'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_frac_digits' mangled-name='_ZNKSt10moneypunctIcLb1EE14do_frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE14do_frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_pos_format' mangled-name='_ZNKSt10moneypunctIcLb1EE13do_pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE13do_pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_neg_format' mangled-name='_ZNKSt10moneypunctIcLb1EE13do_neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIcLb1EE13do_neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2696' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2697' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct&lt;wchar_t, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2774'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2817'/>
+      <class-decl name='moneypunct&lt;wchar_t, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2775'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2818'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2827'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2828'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2828'/>
+          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2829'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2754' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2775'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2755' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2776'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt10moneypunctIwLb0EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIwLb0EE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt10moneypunctIwLb0EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIwLb0EE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2776' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2777' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt10moneypunctIwLb0EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='951' column='1' elf-symbol-id='_ZNSt10moneypunctIwLb0EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
-            <parameter type-id='type-id-2776'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2777'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35677,92 +35683,92 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_moneypunct' mangled-name='_ZNSt10moneypunctIwLb0EE24_M_initialize_moneypunctEP15__locale_structPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='724' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb0EE24_M_initialize_moneypunctEP15__locale_structPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='decimal_point' mangled-name='_ZNKSt10moneypunctIwLb0EE13decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE13decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2827'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2828'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='thousands_sep' mangled-name='_ZNKSt10moneypunctIwLb0EE13thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE13thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2827'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2828'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='frac_digits' mangled-name='_ZNKSt10moneypunctIwLb0EE11frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE11frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='grouping' mangled-name='_ZNKSt10moneypunctIwLb0EE8groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1048' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE8groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='curr_symbol' mangled-name='_ZNKSt10moneypunctIwLb0EE11curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE11curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2828'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2829'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='positive_sign' mangled-name='_ZNKSt10moneypunctIwLb0EE13positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1078' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE13positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2828'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2829'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='negative_sign' mangled-name='_ZNKSt10moneypunctIwLb0EE13negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1095' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE13negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2828'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2829'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='pos_format' mangled-name='_ZNKSt10moneypunctIwLb0EE10pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE10pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='neg_format' mangled-name='_ZNKSt10moneypunctIwLb0EE10neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE10neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIwLb0EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb0EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIwLb0EEC2EPSt18__moneypunct_cacheIwLb0EEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb0EEC2EPSt18__moneypunct_cacheIwLb0EEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
-            <parameter type-id='type-id-2776'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2777'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35770,113 +35776,113 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='921' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIwLb0EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='921' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb0EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIwLb0EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='921' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb0EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2103' is-artificial='yes'/>
+            <parameter type-id='type-id-2104' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_decimal_point' mangled-name='_ZNKSt10moneypunctIwLb0EE16do_decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE16do_decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2827'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2828'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_thousands_sep' mangled-name='_ZNKSt10moneypunctIwLb0EE16do_thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE16do_thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2827'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2828'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_grouping' mangled-name='_ZNKSt10moneypunctIwLb0EE11do_groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE11do_groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_curr_symbol' mangled-name='_ZNKSt10moneypunctIwLb0EE14do_curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE14do_curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2828'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2829'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_positive_sign' mangled-name='_ZNKSt10moneypunctIwLb0EE16do_positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE16do_positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2828'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2829'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_negative_sign' mangled-name='_ZNKSt10moneypunctIwLb0EE16do_negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE16do_negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2828'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2829'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_frac_digits' mangled-name='_ZNKSt10moneypunctIwLb0EE14do_frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE14do_frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_pos_format' mangled-name='_ZNKSt10moneypunctIwLb0EE13do_pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE13do_pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_neg_format' mangled-name='_ZNKSt10moneypunctIwLb0EE13do_neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb0EE13do_neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2829' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2830' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct&lt;wchar_t, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2777'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2817'/>
+      <class-decl name='moneypunct&lt;wchar_t, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='934' column='1' id='type-id-2778'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2818'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2830'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='940' column='1' id='type-id-2831'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2831'/>
+          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='941' column='1' id='type-id-2832'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2756' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2778'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2757' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='943' column='1' id='type-id-2779'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt10moneypunctIwLb1EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIwLb1EE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt10moneypunctIwLb1EE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1285' column='1' elf-symbol-id='_ZNSt10moneypunctIwLb1EE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2779' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2780' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='946' column='1'/>
         </data-member>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt10moneypunctIwLb1EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='951' column='1' elf-symbol-id='_ZNSt10moneypunctIwLb1EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
-            <parameter type-id='type-id-2779'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2780'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35884,92 +35890,92 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_moneypunct' mangled-name='_ZNSt10moneypunctIwLb1EE24_M_initialize_moneypunctEP15__locale_structPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='541' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb1EE24_M_initialize_moneypunctEP15__locale_structPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='decimal_point' mangled-name='_ZNKSt10moneypunctIwLb1EE13decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1005' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE13decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2830'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2831'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='thousands_sep' mangled-name='_ZNKSt10moneypunctIwLb1EE13thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE13thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2830'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2831'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='frac_digits' mangled-name='_ZNKSt10moneypunctIwLb1EE11frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE11frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='grouping' mangled-name='_ZNKSt10moneypunctIwLb1EE8groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1048' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE8groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='curr_symbol' mangled-name='_ZNKSt10moneypunctIwLb1EE11curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE11curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2831'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2832'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='positive_sign' mangled-name='_ZNKSt10moneypunctIwLb1EE13positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1078' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE13positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2831'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2832'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='negative_sign' mangled-name='_ZNKSt10moneypunctIwLb1EE13negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1095' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE13negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2831'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2832'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='pos_format' mangled-name='_ZNKSt10moneypunctIwLb1EE10pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE10pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='neg_format' mangled-name='_ZNKSt10moneypunctIwLb1EE10neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE10neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIwLb1EEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='963' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb1EEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
-            <parameter type-id='type-id-2779'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2780'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct' mangled-name='_ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -35977,574 +35983,574 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='906' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIwLb1EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='906' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb1EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct' mangled-name='_ZNSt10moneypunctIwLb1EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/monetary_members.cc' line='906' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10moneypunctIwLb1EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2104' is-artificial='yes'/>
+            <parameter type-id='type-id-2105' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_decimal_point' mangled-name='_ZNKSt10moneypunctIwLb1EE16do_decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE16do_decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2830'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2831'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_thousands_sep' mangled-name='_ZNKSt10moneypunctIwLb1EE16do_thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE16do_thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2830'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2831'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_grouping' mangled-name='_ZNKSt10moneypunctIwLb1EE11do_groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE11do_groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_curr_symbol' mangled-name='_ZNKSt10moneypunctIwLb1EE14do_curr_symbolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE14do_curr_symbolEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2831'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2832'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_positive_sign' mangled-name='_ZNKSt10moneypunctIwLb1EE16do_positive_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE16do_positive_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2831'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2832'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_negative_sign' mangled-name='_ZNKSt10moneypunctIwLb1EE16do_negative_signEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE16do_negative_signEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2831'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2832'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_frac_digits' mangled-name='_ZNKSt10moneypunctIwLb1EE14do_frac_digitsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE14do_frac_digitsEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_pos_format' mangled-name='_ZNKSt10moneypunctIwLb1EE13do_pos_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE13do_pos_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='10'>
           <function-decl name='do_neg_format' mangled-name='_ZNKSt10moneypunctIwLb1EE13do_neg_formatEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10moneypunctIwLb1EE13do_neg_formatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2832' is-artificial='yes'/>
-            <return type-id='type-id-2750'/>
+            <parameter type-id='type-id-2833' is-artificial='yes'/>
+            <return type-id='type-id-2751'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='money_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1370' column='1' id='type-id-2674'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='money_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1370' column='1' id='type-id-2675'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1376' column='1' id='type-id-2678'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1376' column='1' id='type-id-2679'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2566' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1377' column='1' id='type-id-2833'/>
+          <typedef-decl name='iter_type' type-id='type-id-2567' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1377' column='1' id='type-id-2834'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1378' column='1' id='type-id-2725'/>
+          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1378' column='1' id='type-id-2726'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1505' column='1' elf-symbol-id='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1505' column='1' elf-symbol-id='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='money_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1392' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2093' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='money_get' mangled-name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2093' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2677' is-artificial='yes'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2833'/>
+            <parameter type-id='type-id-2678' is-artificial='yes'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2834'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2833'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2834'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2677' is-artificial='yes'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2833'/>
+            <parameter type-id='type-id-2678' is-artificial='yes'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2834'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2726'/>
-            <return type-id='type-id-2833'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2727'/>
+            <return type-id='type-id-2834'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract&lt;false&gt;' mangled-name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2677' is-artificial='yes'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2733'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2678' is-artificial='yes'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2734'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract&lt;true&gt;' mangled-name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2677' is-artificial='yes'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2733'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2678' is-artificial='yes'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2734'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1460' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2093' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_get' mangled-name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2093' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_get' mangled-name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2092' is-artificial='yes'/>
+            <parameter type-id='type-id-2093' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_get' mangled-name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='364' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2677' is-artificial='yes'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2833'/>
+            <parameter type-id='type-id-2678' is-artificial='yes'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2834'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get' mangled-name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='377' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2677' is-artificial='yes'/>
-            <parameter type-id='type-id-2833'/>
-            <parameter type-id='type-id-2833'/>
+            <parameter type-id='type-id-2678' is-artificial='yes'/>
+            <parameter type-id='type-id-2834'/>
+            <parameter type-id='type-id-2834'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2726'/>
-            <return type-id='type-id-2566'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2727'/>
+            <return type-id='type-id-2567'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='money_get&lt;wchar_t, std::istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1370' column='1' id='type-id-2768'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='money_get&lt;wchar_t, std::istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1370' column='1' id='type-id-2769'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1376' column='1' id='type-id-2834'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1376' column='1' id='type-id-2835'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2570' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1377' column='1' id='type-id-2835'/>
+          <typedef-decl name='iter_type' type-id='type-id-2571' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1377' column='1' id='type-id-2836'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1378' column='1' id='type-id-2836'/>
+          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1378' column='1' id='type-id-2837'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1505' column='1' elf-symbol-id='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1505' column='1' elf-symbol-id='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='money_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1392' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2106' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='money_get' mangled-name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2106' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2837' is-artificial='yes'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2835'/>
+            <parameter type-id='type-id-2838' is-artificial='yes'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2836'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2835'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2836'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2837' is-artificial='yes'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2835'/>
+            <parameter type-id='type-id-2838' is-artificial='yes'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2836'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2838'/>
-            <return type-id='type-id-2835'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2839'/>
+            <return type-id='type-id-2836'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract&lt;true&gt;' mangled-name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2837' is-artificial='yes'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2733'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2838' is-artificial='yes'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2734'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_extract&lt;false&gt;' mangled-name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2837' is-artificial='yes'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2733'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2838' is-artificial='yes'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2734'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_get' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1460' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2106' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_get' mangled-name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2106' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_get' mangled-name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2105' is-artificial='yes'/>
+            <parameter type-id='type-id-2106' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_get' mangled-name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='364' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2837' is-artificial='yes'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2835'/>
+            <parameter type-id='type-id-2838' is-artificial='yes'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2836'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-1047'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-1048'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get' mangled-name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='377' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2837' is-artificial='yes'/>
-            <parameter type-id='type-id-2835'/>
-            <parameter type-id='type-id-2835'/>
+            <parameter type-id='type-id-2838' is-artificial='yes'/>
+            <parameter type-id='type-id-2836'/>
+            <parameter type-id='type-id-2836'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2795'/>
-            <parameter type-id='type-id-2838'/>
-            <return type-id='type-id-2570'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2796'/>
+            <parameter type-id='type-id-2839'/>
+            <return type-id='type-id-2571'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='money_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1521' column='1' id='type-id-2680'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='money_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1521' column='1' id='type-id-2681'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1526' column='1' id='type-id-2684'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1526' column='1' id='type-id-2685'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2311' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1527' column='1' id='type-id-2839'/>
+          <typedef-decl name='iter_type' type-id='type-id-2312' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1527' column='1' id='type-id-2840'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1528' column='1' id='type-id-2686'/>
+          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1528' column='1' id='type-id-2687'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1660' column='1' elf-symbol-id='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1660' column='1' elf-symbol-id='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='money_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1542' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2093' is-artificial='yes'/>
+            <parameter type-id='type-id-2094' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='money_put' mangled-name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1542' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2093' is-artificial='yes'/>
+            <parameter type-id='type-id-2094' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2683' is-artificial='yes'/>
-            <parameter type-id='type-id-2839'/>
+            <parameter type-id='type-id-2684' is-artificial='yes'/>
+            <parameter type-id='type-id-2840'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2684'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2685'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2839'/>
+            <return type-id='type-id-2840'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2683' is-artificial='yes'/>
-            <parameter type-id='type-id-2839'/>
+            <parameter type-id='type-id-2684' is-artificial='yes'/>
+            <parameter type-id='type-id-2840'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2684'/>
-            <parameter type-id='type-id-2688'/>
-            <return type-id='type-id-2839'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2685'/>
+            <parameter type-id='type-id-2689'/>
+            <return type-id='type-id-2840'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert&lt;false&gt;' mangled-name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES3_S3_RSt8ios_basecRKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES3_S3_RSt8ios_basecRKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2683' is-artificial='yes'/>
-            <parameter type-id='type-id-2839'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2684'/>
-            <parameter type-id='type-id-2688'/>
-            <return type-id='type-id-2311'/>
+            <parameter type-id='type-id-2684' is-artificial='yes'/>
+            <parameter type-id='type-id-2840'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2685'/>
+            <parameter type-id='type-id-2689'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert&lt;true&gt;' mangled-name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES3_S3_RSt8ios_basecRKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES3_S3_RSt8ios_basecRKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2683' is-artificial='yes'/>
-            <parameter type-id='type-id-2839'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2684'/>
-            <parameter type-id='type-id-2688'/>
-            <return type-id='type-id-2311'/>
+            <parameter type-id='type-id-2684' is-artificial='yes'/>
+            <parameter type-id='type-id-2840'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2685'/>
+            <parameter type-id='type-id-2689'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1592' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2093' is-artificial='yes'/>
+            <parameter type-id='type-id-2094' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_put' mangled-name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1592' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2093' is-artificial='yes'/>
+            <parameter type-id='type-id-2094' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_put' mangled-name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1592' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2093' is-artificial='yes'/>
+            <parameter type-id='type-id-2094' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_put' mangled-name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2683' is-artificial='yes'/>
-            <parameter type-id='type-id-2839'/>
+            <parameter type-id='type-id-2684' is-artificial='yes'/>
+            <parameter type-id='type-id-2840'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2684'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2685'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_put' mangled-name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='607' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2683' is-artificial='yes'/>
-            <parameter type-id='type-id-2839'/>
+            <parameter type-id='type-id-2684' is-artificial='yes'/>
+            <parameter type-id='type-id-2840'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2684'/>
-            <parameter type-id='type-id-2688'/>
-            <return type-id='type-id-2311'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2685'/>
+            <parameter type-id='type-id-2689'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='money_put&lt;wchar_t, std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1521' column='1' id='type-id-2769'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='money_put&lt;wchar_t, std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1521' column='1' id='type-id-2770'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1526' column='1' id='type-id-2840'/>
+          <typedef-decl name='char_type' type-id='type-id-377' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1526' column='1' id='type-id-2841'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2315' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1527' column='1' id='type-id-2841'/>
+          <typedef-decl name='iter_type' type-id='type-id-2316' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1527' column='1' id='type-id-2842'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1528' column='1' id='type-id-2842'/>
+          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1528' column='1' id='type-id-2843'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1660' column='1' elf-symbol-id='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1660' column='1' elf-symbol-id='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='money_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1542' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2106' is-artificial='yes'/>
+            <parameter type-id='type-id-2107' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='money_put' mangled-name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1542' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2106' is-artificial='yes'/>
+            <parameter type-id='type-id-2107' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2843' is-artificial='yes'/>
-            <parameter type-id='type-id-2841'/>
+            <parameter type-id='type-id-2844' is-artificial='yes'/>
+            <parameter type-id='type-id-2842'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2840'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2841'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2841'/>
+            <return type-id='type-id-2842'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2843' is-artificial='yes'/>
-            <parameter type-id='type-id-2841'/>
+            <parameter type-id='type-id-2844' is-artificial='yes'/>
+            <parameter type-id='type-id-2842'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2840'/>
-            <parameter type-id='type-id-2844'/>
-            <return type-id='type-id-2841'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2841'/>
+            <parameter type-id='type-id-2845'/>
+            <return type-id='type-id-2842'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert&lt;false&gt;' mangled-name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb0EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb0EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2843' is-artificial='yes'/>
+            <parameter type-id='type-id-2844' is-artificial='yes'/>
+            <parameter type-id='type-id-2842'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2841'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2840'/>
-            <parameter type-id='type-id-2844'/>
-            <return type-id='type-id-2315'/>
+            <parameter type-id='type-id-2845'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert&lt;true&gt;' mangled-name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb1EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb1EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2843' is-artificial='yes'/>
+            <parameter type-id='type-id-2844' is-artificial='yes'/>
+            <parameter type-id='type-id-2842'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2841'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2840'/>
-            <parameter type-id='type-id-2844'/>
-            <return type-id='type-id-2315'/>
+            <parameter type-id='type-id-2845'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1592' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2106' is-artificial='yes'/>
+            <parameter type-id='type-id-2107' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_put' mangled-name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1592' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2106' is-artificial='yes'/>
+            <parameter type-id='type-id-2107' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~money_put' mangled-name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1592' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2106' is-artificial='yes'/>
+            <parameter type-id='type-id-2107' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_put' mangled-name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2843' is-artificial='yes'/>
-            <parameter type-id='type-id-2841'/>
+            <parameter type-id='type-id-2844' is-artificial='yes'/>
+            <parameter type-id='type-id-2842'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2840'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2841'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2315'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_put' mangled-name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='607' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2843' is-artificial='yes'/>
-            <parameter type-id='type-id-2841'/>
+            <parameter type-id='type-id-2844' is-artificial='yes'/>
+            <parameter type-id='type-id-2842'/>
             <parameter type-id='type-id-40'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2840'/>
-            <parameter type-id='type-id-2844'/>
-            <return type-id='type-id-2315'/>
+            <parameter type-id='type-id-2543'/>
+            <parameter type-id='type-id-2841'/>
+            <parameter type-id='type-id-2845'/>
+            <return type-id='type-id-2316'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='messages&lt;char&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1695' column='1' id='type-id-2740'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2845'/>
+      <class-decl name='messages&lt;char&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1695' column='1' id='type-id-2741'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2846'/>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1702' column='1' id='type-id-2671'/>
+          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1702' column='1' id='type-id-2672'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8messagesIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1864' column='1' elf-symbol-id='_ZNSt8messagesIcE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8messagesIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1864' column='1' elf-symbol-id='_ZNSt8messagesIcE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_messages' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1708' column='1'/>
+          <var-decl name='_M_c_locale_messages' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1708' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='192'>
           <var-decl name='_M_name_messages' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1709' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='messages' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1723' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2097' is-artificial='yes'/>
+            <parameter type-id='type-id-2098' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='messages' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1737' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2097' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -36552,15 +36558,15 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='messages' mangled-name='_ZNSt8messagesIcEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIcEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2097' is-artificial='yes'/>
+            <parameter type-id='type-id-2098' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='messages' mangled-name='_ZNSt8messagesIcEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1737' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIcEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2097' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2098' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -36568,85 +36574,85 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='open' mangled-name='_ZNKSt8messagesIcE4openERKSsRKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE4openERKSsRKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
             <parameter type-id='type-id-735'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-2847'/>
+            <return type-id='type-id-2848'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='open' mangled-name='_ZNKSt8messagesIcE4openERKSsRKSt6localePKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE4openERKSsRKSt6localePKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
             <parameter type-id='type-id-735'/>
             <parameter type-id='type-id-965'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-2847'/>
+            <return type-id='type-id-2848'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt8messagesIcE3getEiiiRKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1786' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE3getEiiiRKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-6'/>
-            <parameter type-id='type-id-2673'/>
-            <return type-id='type-id-2671'/>
+            <parameter type-id='type-id-2674'/>
+            <return type-id='type-id-2672'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='close' mangled-name='_ZNKSt8messagesIcE5closeEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE5closeEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_convert_to_char' mangled-name='_ZNKSt8messagesIcE18_M_convert_to_charERKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1848' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE18_M_convert_to_charERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
-            <parameter type-id='type-id-2673'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
+            <parameter type-id='type-id-2674'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_convert_from_char' mangled-name='_ZNKSt8messagesIcE20_M_convert_from_charEPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE20_M_convert_from_charEPc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
-            <return type-id='type-id-2671'/>
+            <return type-id='type-id-2672'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1803' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2097' is-artificial='yes'/>
+            <parameter type-id='type-id-2098' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages' mangled-name='_ZNSt8messagesIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1803' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2097' is-artificial='yes'/>
+            <parameter type-id='type-id-2098' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages' mangled-name='_ZNSt8messagesIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1803' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2097' is-artificial='yes'/>
+            <parameter type-id='type-id-2098' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_open' mangled-name='_ZNKSt8messagesIcE7do_openERKSsRKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE7do_openERKSsRKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
             <parameter type-id='type-id-735'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-2847'/>
+            <return type-id='type-id-2848'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get' mangled-name='_ZNKSt8messagesIcE6do_getEiiiRKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/messages_members.cc' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE6do_getEiiiRKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-324'/>
@@ -36655,52 +36661,52 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_close' mangled-name='_ZNKSt8messagesIcE8do_closeEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIcE8do_closeEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2846' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2847' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='messages&lt;wchar_t&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1695' column='1' id='type-id-2767'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2845'/>
+      <class-decl name='messages&lt;wchar_t&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1695' column='1' id='type-id-2768'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2846'/>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1702' column='1' id='type-id-2848'/>
+          <typedef-decl name='string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1702' column='1' id='type-id-2849'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8messagesIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1864' column='1' elf-symbol-id='_ZNSt8messagesIwE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8messagesIwE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1864' column='1' elf-symbol-id='_ZNSt8messagesIwE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_c_locale_messages' type-id='type-id-2049' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1708' column='1'/>
+          <var-decl name='_M_c_locale_messages' type-id='type-id-2050' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1708' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='192'>
           <var-decl name='_M_name_messages' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1709' column='1'/>
         </data-member>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_convert_to_char' mangled-name='_ZNKSt8messagesIwE18_M_convert_to_charERKSbIwSt11char_traitsIwESaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1848' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE18_M_convert_to_charERKSbIwSt11char_traitsIwESaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
-            <parameter type-id='type-id-2850'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
+            <parameter type-id='type-id-2851'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_convert_from_char' mangled-name='_ZNKSt8messagesIwE20_M_convert_from_charEPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE20_M_convert_from_charEPc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
-            <return type-id='type-id-2848'/>
+            <return type-id='type-id-2849'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='messages' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1723' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2110' is-artificial='yes'/>
+            <parameter type-id='type-id-2111' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='messages' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1737' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2110' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2111' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -36708,15 +36714,15 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='messages' mangled-name='_ZNSt8messagesIwEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIwEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2110' is-artificial='yes'/>
+            <parameter type-id='type-id-2111' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='messages' mangled-name='_ZNSt8messagesIwEC2EP15__locale_structPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1737' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIwEC2EP15__locale_structPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2110' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2111' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -36724,71 +36730,71 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='open' mangled-name='_ZNKSt8messagesIwE4openERKSsRKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE4openERKSsRKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
             <parameter type-id='type-id-735'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-2847'/>
+            <return type-id='type-id-2848'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='open' mangled-name='_ZNKSt8messagesIwE4openERKSsRKSt6localePKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE4openERKSsRKSt6localePKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
             <parameter type-id='type-id-735'/>
             <parameter type-id='type-id-965'/>
             <parameter type-id='type-id-4'/>
-            <return type-id='type-id-2847'/>
+            <return type-id='type-id-2848'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='get' mangled-name='_ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1786' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-6'/>
-            <parameter type-id='type-id-2850'/>
-            <return type-id='type-id-2848'/>
+            <parameter type-id='type-id-2851'/>
+            <return type-id='type-id-2849'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='close' mangled-name='_ZNKSt8messagesIwE5closeEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE5closeEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1803' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2110' is-artificial='yes'/>
+            <parameter type-id='type-id-2111' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages' mangled-name='_ZNSt8messagesIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1803' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2110' is-artificial='yes'/>
+            <parameter type-id='type-id-2111' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages' mangled-name='_ZNSt8messagesIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1803' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8messagesIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2110' is-artificial='yes'/>
+            <parameter type-id='type-id-2111' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_open' mangled-name='_ZNKSt8messagesIwE7do_openERKSsRKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE7do_openERKSsRKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
             <parameter type-id='type-id-735'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-2847'/>
+            <return type-id='type-id-2848'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_get' mangled-name='_ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/messages_members.cc' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-327'/>
@@ -36797,8 +36803,8 @@ 
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_close' mangled-name='_ZNKSt8messagesIwE8do_closeEi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8messagesIwE8do_closeEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2849' is-artificial='yes'/>
-            <parameter type-id='type-id-2847'/>
+            <parameter type-id='type-id-2850' is-artificial='yes'/>
+            <parameter type-id='type-id-2848'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -36813,8 +36819,8 @@ 
         <parameter type-id='type-id-4'/>
         <return type-id='type-id-40'/>
       </function-decl>
-      <class-decl name='__numpunct_cache&lt;char&gt;' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1570' column='1' is-declaration-only='yes' id='type-id-2646'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='__numpunct_cache&lt;char&gt;' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1570' column='1' is-declaration-only='yes' id='type-id-2647'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <data-member access='public' layout-offset-in-bits='128'>
           <var-decl name='_M_grouping' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1572' column='1'/>
         </data-member>
@@ -36843,531 +36849,531 @@ 
           <var-decl name='_M_thousands_sep' type-id='type-id-188' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1580' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='592'>
-          <var-decl name='_M_atoms_out' type-id='type-id-2627' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1586' column='1'/>
+          <var-decl name='_M_atoms_out' type-id='type-id-2628' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1586' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='880'>
-          <var-decl name='_M_atoms_in' type-id='type-id-2625' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1592' column='1'/>
+          <var-decl name='_M_atoms_in' type-id='type-id-2626' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1592' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1088'>
           <var-decl name='_M_allocated' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1594' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='__numpunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1596' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2758' is-artificial='yes'/>
+            <parameter type-id='type-id-2759' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__numpunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1614' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2758' is-artificial='yes'/>
-            <parameter type-id='type-id-2648'/>
+            <parameter type-id='type-id-2759' is-artificial='yes'/>
+            <parameter type-id='type-id-2649'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='__numpunct_cache' mangled-name='_ZNSt16__numpunct_cacheIcEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1596' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIcEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2758' is-artificial='yes'/>
+            <parameter type-id='type-id-2759' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_cache' mangled-name='_ZNSt16__numpunct_cacheIcE8_M_cacheERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIcE8_M_cacheERKSt6locale@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2758' is-artificial='yes'/>
+            <parameter type-id='type-id-2759' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__numpunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1618' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2758' is-artificial='yes'/>
+            <parameter type-id='type-id-2759' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__numpunct_cache' mangled-name='_ZNSt16__numpunct_cacheIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2758' is-artificial='yes'/>
+            <parameter type-id='type-id-2759' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' destructor='yes' vtable-offset='-1'>
           <function-decl name='~__numpunct_cache' mangled-name='_ZNSt16__numpunct_cacheIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16__numpunct_cacheIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2758' is-artificial='yes'/>
+            <parameter type-id='type-id-2759' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='numpunct&lt;char&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1643' column='1' is-declaration-only='yes' id='type-id-2576'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+      <class-decl name='numpunct&lt;char&gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1643' column='1' is-declaration-only='yes' id='type-id-2577'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1649' column='1' id='type-id-2851'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1649' column='1' id='type-id-2852'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1650' column='1' id='type-id-2852'/>
+          <typedef-decl name='string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1650' column='1' id='type-id-2853'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__cache_type' type-id='type-id-2646' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1652' column='1' id='type-id-2780'/>
+          <typedef-decl name='__cache_type' type-id='type-id-2647' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1652' column='1' id='type-id-2781'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt8numpunctIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1856' column='1' elf-symbol-id='_ZNSt8numpunctIcE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt8numpunctIcE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1856' column='1' elf-symbol-id='_ZNSt8numpunctIcE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='128'>
-          <var-decl name='_M_data' type-id='type-id-2781' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1655' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-2782' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1655' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1681' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
-            <parameter type-id='type-id-2781'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2782'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1695' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_initialize_numpunct' mangled-name='_ZNSt8numpunctIcE22_M_initialize_numpunctEP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIcE22_M_initialize_numpunctEP15__locale_struct@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='grouping' mangled-name='_ZNKSt8numpunctIcE8groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1753' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE8groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='truename' mangled-name='_ZNKSt8numpunctIcE8truenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1766' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE8truenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2852'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2853'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='falsename' mangled-name='_ZNKSt8numpunctIcE9falsenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1779' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE9falsenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2852'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2853'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='decimal_point' mangled-name='_ZNKSt8numpunctIcE13decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE13decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2851'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2852'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='thousands_sep' mangled-name='_ZNKSt8numpunctIcE13thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1722' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE13thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2851'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2852'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1667' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' mangled-name='_ZNSt8numpunctIcEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1667' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIcEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' mangled-name='_ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1681' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
-            <parameter type-id='type-id-2781'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2782'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct' mangled-name='_ZNSt8numpunctIcEC2EP15__locale_structm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIcEC2EP15__locale_structm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
-            <parameter type-id='type-id-2049'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
+            <parameter type-id='type-id-2050'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct' mangled-name='_ZNSt8numpunctIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct' mangled-name='_ZNSt8numpunctIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/numeric_members.cc' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8numpunctIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2086' is-artificial='yes'/>
+            <parameter type-id='type-id-2087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_decimal_point' mangled-name='_ZNKSt8numpunctIcE16do_decimal_pointEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE16do_decimal_pointEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2851'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2852'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_thousands_sep' mangled-name='_ZNKSt8numpunctIcE16do_thousands_sepEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1808' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE16do_thousands_sepEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2851'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2852'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_grouping' mangled-name='_ZNKSt8numpunctIcE11do_groupingEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE11do_groupingEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
             <return type-id='type-id-322'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_truename' mangled-name='_ZNKSt8numpunctIcE11do_truenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1834' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE11do_truenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2852'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2853'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_falsename' mangled-name='_ZNKSt8numpunctIcE12do_falsenameEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8numpunctIcE12do_falsenameEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2578' is-artificial='yes'/>
-            <return type-id='type-id-2852'/>
+            <parameter type-id='type-id-2579' is-artificial='yes'/>
+            <return type-id='type-id-2853'/>
           </function-decl>
         </member-function>
       </class-decl>
       <class-decl name='num_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2253' column='1' is-declaration-only='yes' id='type-id-988'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2069'/>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2070'/>
         <member-type access='private'>
-          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2259' column='1' id='type-id-2853'/>
+          <typedef-decl name='char_type' type-id='type-id-188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2259' column='1' id='type-id-2854'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='iter_type' type-id='type-id-2311' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2260' column='1' id='type-id-2854'/>
+          <typedef-decl name='iter_type' type-id='type-id-2312' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2260' column='1' id='type-id-2855'/>
         </member-type>
         <data-member access='private' static='yes'>
-          <var-decl name='id' type-id='type-id-2044' mangled-name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2517' column='1' elf-symbol-id='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
+          <var-decl name='id' type-id='type-id-2045' mangled-name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2517' column='1' elf-symbol-id='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='num_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2274' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2088' is-artificial='yes'/>
+            <parameter type-id='type-id-2089' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='num_put' mangled-name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2088' is-artificial='yes'/>
+            <parameter type-id='type-id-2089' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_group_int' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcmcRSt8ios_basePcS9_Ri' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='835' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcmcRSt8ios_basePcS9_Ri@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-188'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-94'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_group_float' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcmcS6_PcS7_Ri' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='935' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcmcS6_PcS7_Ri@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-94'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_pad' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEclRSt8ios_basePcPKcRi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='776' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEclRSt8ios_basePcPKcRi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-4'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_float&lt;long double&gt;' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIeEES3_S3_RSt8ios_baseccT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='971' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIeEES3_S3_RSt8ios_baseccT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
-            <parameter type-id='type-id-2311'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2312'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_float&lt;double&gt;' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='971' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
-            <parameter type-id='type-id-2311'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2312'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long long unsigned int&gt;' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES3_S3_RSt8ios_basecT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES3_S3_RSt8ios_basecT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
-            <parameter type-id='type-id-2311'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2312'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long long int&gt;' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES3_S3_RSt8ios_basecT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES3_S3_RSt8ios_basecT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
-            <parameter type-id='type-id-2311'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2312'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long unsigned int&gt;' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES3_S3_RSt8ios_basecT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES3_S3_RSt8ios_basecT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
-            <parameter type-id='type-id-2311'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2312'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes'>
           <function-decl name='_M_insert_int&lt;long int&gt;' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES3_S3_RSt8ios_basecT_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES3_S3_RSt8ios_basecT_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
-            <parameter type-id='type-id-2311'/>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2312'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-188'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_put' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2453' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2088' is-artificial='yes'/>
+            <parameter type-id='type-id-2089' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_put' mangled-name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2088' is-artificial='yes'/>
+            <parameter type-id='type-id-2089' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~num_put' mangled-name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2088' is-artificial='yes'/>
+            <parameter type-id='type-id-2089' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='2'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1090' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-40'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='3'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-20'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='4'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-44'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='5'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-262'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='6'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='2488' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-376'/>
-            <return type-id='type-id-2854'/>
+            <return type-id='type-id-2855'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='7'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-254'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='8'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-375'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
         <member-function access='protected' const='yes' vtable-offset='9'>
           <function-decl name='do_put' mangled-name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2699' is-artificial='yes'/>
+            <parameter type-id='type-id-2700' is-artificial='yes'/>
+            <parameter type-id='type-id-2855'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-2854'/>
-            <parameter type-id='type-id-2542'/>
-            <parameter type-id='type-id-2853'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2311'/>
+            <return type-id='type-id-2312'/>
           </function-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/localename.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <reference-type-def kind='lvalue' type-id='type-id-274' size-in-bits='64' id='type-id-1807'/>
+    <reference-type-def kind='lvalue' type-id='type-id-274' size-in-bits='64' id='type-id-1808'/>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='operator-&lt;char*, std::basic_string&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='898' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1807'/>
-        <parameter type-id='type-id-1807'/>
+        <parameter type-id='type-id-1808'/>
+        <parameter type-id='type-id-1808'/>
         <return type-id='type-id-276'/>
       </function-decl>
     </namespace-decl>
@@ -37377,9 +37383,9 @@ 
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/math_stubs_long_double.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/misc-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2552' const='yes' id='type-id-2855'/>
-    <qualified-type-def type-id='type-id-2502' const='yes' id='type-id-2856'/>
-    <qualified-type-def type-id='type-id-2482' const='yes' id='type-id-2503'/>
+    <qualified-type-def type-id='type-id-2553' const='yes' id='type-id-2856'/>
+    <qualified-type-def type-id='type-id-2503' const='yes' id='type-id-2857'/>
+    <qualified-type-def type-id='type-id-2483' const='yes' id='type-id-2504'/>
     <namespace-decl name='std'>
       <function-decl name='getline&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' mangled-name='_ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2790' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E@@GLIBCXX_3.4'>
         <parameter type-id='type-id-797' name='__in' filepath='../../../.././libstdc++-v3/src/c++98/istream.cc' line='279' column='1'/>
@@ -37421,50 +37427,50 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/mt_allocator.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <reference-type-def kind='lvalue' type-id='type-id-2857' size-in-bits='64' id='type-id-2858'/>
-    <pointer-type-def type-id='type-id-2859' size-in-bits='64' id='type-id-2860'/>
-    <pointer-type-def type-id='type-id-2861' size-in-bits='64' id='type-id-2862'/>
-    <pointer-type-def type-id='type-id-2863' size-in-bits='64' id='type-id-2864'/>
-    <pointer-type-def type-id='type-id-2865' size-in-bits='64' id='type-id-2866'/>
-    <pointer-type-def type-id='type-id-2867' size-in-bits='64' id='type-id-2868'/>
-    <pointer-type-def type-id='type-id-2869' size-in-bits='64' id='type-id-2870'/>
-    <pointer-type-def type-id='type-id-2871' size-in-bits='64' id='type-id-2872'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2858' size-in-bits='64' id='type-id-2859'/>
+    <pointer-type-def type-id='type-id-2860' size-in-bits='64' id='type-id-2861'/>
+    <pointer-type-def type-id='type-id-2862' size-in-bits='64' id='type-id-2863'/>
+    <pointer-type-def type-id='type-id-2864' size-in-bits='64' id='type-id-2865'/>
+    <pointer-type-def type-id='type-id-2866' size-in-bits='64' id='type-id-2867'/>
+    <pointer-type-def type-id='type-id-2868' size-in-bits='64' id='type-id-2869'/>
+    <pointer-type-def type-id='type-id-2870' size-in-bits='64' id='type-id-2871'/>
     <pointer-type-def type-id='type-id-2872' size-in-bits='64' id='type-id-2873'/>
-    <pointer-type-def type-id='type-id-2874' size-in-bits='64' id='type-id-2875'/>
-    <pointer-type-def type-id='type-id-2876' size-in-bits='64' id='type-id-2877'/>
-    <pointer-type-def type-id='type-id-2878' size-in-bits='64' id='type-id-2879'/>
+    <pointer-type-def type-id='type-id-2873' size-in-bits='64' id='type-id-2874'/>
+    <pointer-type-def type-id='type-id-2875' size-in-bits='64' id='type-id-2876'/>
+    <pointer-type-def type-id='type-id-2877' size-in-bits='64' id='type-id-2878'/>
     <pointer-type-def type-id='type-id-2879' size-in-bits='64' id='type-id-2880'/>
-    <pointer-type-def type-id='type-id-2881' size-in-bits='64' id='type-id-2882'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2883' size-in-bits='64' id='type-id-2884'/>
-    <pointer-type-def type-id='type-id-2883' size-in-bits='64' id='type-id-2885'/>
-    <pointer-type-def type-id='type-id-2886' size-in-bits='64' id='type-id-2887'/>
-    <pointer-type-def type-id='type-id-2888' size-in-bits='64' id='type-id-2889'/>
-    <pointer-type-def type-id='type-id-2890' size-in-bits='64' id='type-id-2891'/>
-    <qualified-type-def type-id='type-id-2859' const='yes' id='type-id-2892'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2892' size-in-bits='64' id='type-id-2893'/>
-    <qualified-type-def type-id='type-id-2861' const='yes' id='type-id-2894'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2894' size-in-bits='64' id='type-id-2895'/>
-    <qualified-type-def type-id='type-id-2863' const='yes' id='type-id-2896'/>
-    <pointer-type-def type-id='type-id-2896' size-in-bits='64' id='type-id-2897'/>
-    <qualified-type-def type-id='type-id-2865' const='yes' id='type-id-2898'/>
-    <pointer-type-def type-id='type-id-2898' size-in-bits='64' id='type-id-2899'/>
-    <qualified-type-def type-id='type-id-2869' const='yes' id='type-id-2900'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2900' size-in-bits='64' id='type-id-2901'/>
-    <qualified-type-def type-id='type-id-2876' const='yes' id='type-id-2902'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2902' size-in-bits='64' id='type-id-2903'/>
-    <qualified-type-def type-id='type-id-2883' const='yes' id='type-id-2904'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2904' size-in-bits='64' id='type-id-2905'/>
-    <pointer-type-def type-id='type-id-2904' size-in-bits='64' id='type-id-2906'/>
-    <qualified-type-def type-id='type-id-2890' const='yes' id='type-id-2907'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2907' size-in-bits='64' id='type-id-2908'/>
+    <pointer-type-def type-id='type-id-2880' size-in-bits='64' id='type-id-2881'/>
+    <pointer-type-def type-id='type-id-2882' size-in-bits='64' id='type-id-2883'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2884' size-in-bits='64' id='type-id-2885'/>
+    <pointer-type-def type-id='type-id-2884' size-in-bits='64' id='type-id-2886'/>
+    <pointer-type-def type-id='type-id-2887' size-in-bits='64' id='type-id-2888'/>
+    <pointer-type-def type-id='type-id-2889' size-in-bits='64' id='type-id-2890'/>
+    <pointer-type-def type-id='type-id-2891' size-in-bits='64' id='type-id-2892'/>
+    <qualified-type-def type-id='type-id-2860' const='yes' id='type-id-2893'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2893' size-in-bits='64' id='type-id-2894'/>
+    <qualified-type-def type-id='type-id-2862' const='yes' id='type-id-2895'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2895' size-in-bits='64' id='type-id-2896'/>
+    <qualified-type-def type-id='type-id-2864' const='yes' id='type-id-2897'/>
+    <pointer-type-def type-id='type-id-2897' size-in-bits='64' id='type-id-2898'/>
+    <qualified-type-def type-id='type-id-2866' const='yes' id='type-id-2899'/>
+    <pointer-type-def type-id='type-id-2899' size-in-bits='64' id='type-id-2900'/>
+    <qualified-type-def type-id='type-id-2870' const='yes' id='type-id-2901'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2901' size-in-bits='64' id='type-id-2902'/>
+    <qualified-type-def type-id='type-id-2877' const='yes' id='type-id-2903'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2903' size-in-bits='64' id='type-id-2904'/>
+    <qualified-type-def type-id='type-id-2884' const='yes' id='type-id-2905'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2905' size-in-bits='64' id='type-id-2906'/>
+    <pointer-type-def type-id='type-id-2905' size-in-bits='64' id='type-id-2907'/>
+    <qualified-type-def type-id='type-id-2891' const='yes' id='type-id-2908'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2908' size-in-bits='64' id='type-id-2909'/>
     <namespace-decl name='__gnu_cxx'>
-      <typedef-decl name='__destroy_handler' type-id='type-id-88' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='46' column='1' id='type-id-2909'/>
-      <class-decl name='__pool_base' size-in-bits='576' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='49' column='1' id='type-id-2883'>
+      <typedef-decl name='__destroy_handler' type-id='type-id-88' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='46' column='1' id='type-id-2910'/>
+      <class-decl name='__pool_base' size-in-bits='576' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='49' column='1' id='type-id-2884'>
         <member-type access='public'>
-          <typedef-decl name='_Binmap_type' type-id='type-id-627' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='53' column='1' id='type-id-2886'/>
+          <typedef-decl name='_Binmap_type' type-id='type-id-627' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='53' column='1' id='type-id-2887'/>
         </member-type>
         <member-type access='public'>
-          <class-decl name='_Tune' size-in-bits='448' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='57' column='1' id='type-id-2890'>
+          <class-decl name='_Tune' size-in-bits='448' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='57' column='1' id='type-id-2891'>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='_M_align' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='70' column='1'/>
             </data-member>
@@ -37488,13 +37494,13 @@ 
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Tune' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2891' is-artificial='yes'/>
+                <parameter type-id='type-id-2892' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Tune' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-2891' is-artificial='yes'/>
+                <parameter type-id='type-id-2892' is-artificial='yes'/>
                 <parameter type-id='type-id-91'/>
                 <parameter type-id='type-id-91'/>
                 <parameter type-id='type-id-91'/>
@@ -37508,125 +37514,125 @@ 
           </class-decl>
         </member-type>
         <member-type access='public'>
-          <class-decl name='_Block_address' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='128' column='1' id='type-id-2888'>
+          <class-decl name='_Block_address' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='128' column='1' id='type-id-2889'>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='_M_initial' type-id='type-id-34' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='130' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
-              <var-decl name='_M_next' type-id='type-id-2889' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='131' column='1'/>
+              <var-decl name='_M_next' type-id='type-id-2890' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='131' column='1'/>
             </data-member>
           </class-decl>
         </member-type>
         <data-member access='protected' layout-offset-in-bits='0'>
-          <var-decl name='_M_options' type-id='type-id-2890' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='174' column='1'/>
+          <var-decl name='_M_options' type-id='type-id-2891' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='174' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='448'>
-          <var-decl name='_M_binmap' type-id='type-id-2887' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='176' column='1'/>
+          <var-decl name='_M_binmap' type-id='type-id-2888' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='176' column='1'/>
         </data-member>
         <data-member access='protected' layout-offset-in-bits='512'>
           <var-decl name='_M_init' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='181' column='1'/>
         </data-member>
         <member-function access='public' constructor='yes'>
           <function-decl name='__pool_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2885' is-artificial='yes'/>
+            <parameter type-id='type-id-2886' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' constructor='yes'>
           <function-decl name='__pool_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2885' is-artificial='yes'/>
-            <parameter type-id='type-id-2908'/>
+            <parameter type-id='type-id-2886' is-artificial='yes'/>
+            <parameter type-id='type-id-2909'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='__pool_base' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2885' is-artificial='yes'/>
-            <parameter type-id='type-id-2905'/>
+            <parameter type-id='type-id-2886' is-artificial='yes'/>
+            <parameter type-id='type-id-2906'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_set_options' mangled-name='_ZN9__gnu_cxx11__pool_base14_M_set_optionsENS0_5_TuneE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2885' is-artificial='yes'/>
-            <parameter type-id='type-id-2890'/>
+            <parameter type-id='type-id-2886' is-artificial='yes'/>
+            <parameter type-id='type-id-2891'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_check_threshold' mangled-name='_ZN9__gnu_cxx11__pool_base18_M_check_thresholdEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2885' is-artificial='yes'/>
+            <parameter type-id='type-id-2886' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_binmap' mangled-name='_ZN9__gnu_cxx11__pool_base13_M_get_binmapEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2885' is-artificial='yes'/>
+            <parameter type-id='type-id-2886' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-91'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_M_get_align' mangled-name='_ZN9__gnu_cxx11__pool_base12_M_get_alignEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2885' is-artificial='yes'/>
+            <parameter type-id='type-id-2886' is-artificial='yes'/>
             <return type-id='type-id-91'/>
           </function-decl>
         </member-function>
         <member-function access='public' const='yes'>
           <function-decl name='_M_get_options' mangled-name='_ZNK9__gnu_cxx11__pool_base14_M_get_optionsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2906' is-artificial='yes'/>
-            <return type-id='type-id-2908'/>
+            <parameter type-id='type-id-2907' is-artificial='yes'/>
+            <return type-id='type-id-2909'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__pool&lt;false&gt;' size-in-bits='704' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='194' column='1' id='type-id-2867'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2883'/>
+      <class-decl name='__pool&lt;false&gt;' size-in-bits='704' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='194' column='1' id='type-id-2868'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2884'/>
         <member-type access='private'>
-          <union-decl name='_Block_record' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='197' column='1' id='type-id-2871'>
+          <union-decl name='_Block_record' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='197' column='1' id='type-id-2872'>
             <data-member access='public'>
-              <var-decl name='_M_next' type-id='type-id-2872' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='200' column='1'/>
+              <var-decl name='_M_next' type-id='type-id-2873' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='200' column='1'/>
             </data-member>
           </union-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Bin_record' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='203' column='1' id='type-id-2869'>
+          <class-decl name='_Bin_record' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='203' column='1' id='type-id-2870'>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='_M_first' type-id='type-id-2873' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='206' column='1'/>
+              <var-decl name='_M_first' type-id='type-id-2874' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='206' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
-              <var-decl name='_M_address' type-id='type-id-2889' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='209' column='1'/>
+              <var-decl name='_M_address' type-id='type-id-2890' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='209' column='1'/>
             </data-member>
           </class-decl>
         </member-type>
         <data-member access='private' layout-offset-in-bits='576'>
-          <var-decl name='_M_bin' type-id='type-id-2870' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='249' column='1'/>
+          <var-decl name='_M_bin' type-id='type-id-2871' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='249' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='640'>
           <var-decl name='_M_bin_size' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='252' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__pool' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2868' is-artificial='yes'/>
+            <parameter type-id='type-id-2869' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2868' is-artificial='yes'/>
-            <parameter type-id='type-id-2908'/>
+            <parameter type-id='type-id-2869' is-artificial='yes'/>
+            <parameter type-id='type-id-2909'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_destroy' mangled-name='_ZN9__gnu_cxx6__poolILb0EE10_M_destroyEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb0EE10_M_destroyEv@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2868' is-artificial='yes'/>
+            <parameter type-id='type-id-2869' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_reclaim_block' mangled-name='_ZN9__gnu_cxx6__poolILb0EE16_M_reclaim_blockEPcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb0EE16_M_reclaim_blockEPcm@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2868' is-artificial='yes'/>
+            <parameter type-id='type-id-2869' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -37634,7 +37640,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_reserve_block' mangled-name='_ZN9__gnu_cxx6__poolILb0EE16_M_reserve_blockEmm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb0EE16_M_reserve_blockEmm@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2868' is-artificial='yes'/>
+            <parameter type-id='type-id-2869' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-94'/>
@@ -37642,17 +37648,17 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_initialize' mangled-name='_ZN9__gnu_cxx6__poolILb0EE13_M_initializeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb0EE13_M_initializeEv@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2868' is-artificial='yes'/>
+            <parameter type-id='type-id-2869' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__pool&lt;true&gt;' size-in-bits='832' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='261' column='1' id='type-id-2874'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2883'/>
+      <class-decl name='__pool&lt;true&gt;' size-in-bits='832' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='261' column='1' id='type-id-2875'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2884'/>
         <member-type access='private'>
-          <class-decl name='_Thread_record' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='273' column='1' id='type-id-2881'>
+          <class-decl name='_Thread_record' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='273' column='1' id='type-id-2882'>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='_M_next' type-id='type-id-2882' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='276' column='1'/>
+              <var-decl name='_M_next' type-id='type-id-2883' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='276' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
               <var-decl name='_M_id' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='279' column='1'/>
@@ -37660,9 +37666,9 @@ 
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <union-decl name='_Block_record' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='282' column='1' id='type-id-2878'>
+          <union-decl name='_Block_record' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='282' column='1' id='type-id-2879'>
             <data-member access='public'>
-              <var-decl name='_M_next' type-id='type-id-2879' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='285' column='1'/>
+              <var-decl name='_M_next' type-id='type-id-2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='285' column='1'/>
             </data-member>
             <data-member access='public'>
               <var-decl name='_M_thread_id' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='288' column='1'/>
@@ -37670,18 +37676,18 @@ 
           </union-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_Bin_record' size-in-bits='320' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='291' column='1' id='type-id-2876'>
+          <class-decl name='_Bin_record' size-in-bits='320' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='291' column='1' id='type-id-2877'>
             <data-member access='public' layout-offset-in-bits='0'>
-              <var-decl name='_M_first' type-id='type-id-2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='296' column='1'/>
+              <var-decl name='_M_first' type-id='type-id-2881' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='296' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='64'>
-              <var-decl name='_M_address' type-id='type-id-2889' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='299' column='1'/>
+              <var-decl name='_M_address' type-id='type-id-2890' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='299' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='128'>
-              <var-decl name='_M_free' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='310' column='1'/>
+              <var-decl name='_M_free' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='310' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='192'>
-              <var-decl name='_M_used' type-id='type-id-1960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='311' column='1'/>
+              <var-decl name='_M_used' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='311' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='256'>
               <var-decl name='_M_mutex' type-id='type-id-70' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='316' column='1'/>
@@ -37689,55 +37695,55 @@ 
           </class-decl>
         </member-type>
         <data-member access='private' layout-offset-in-bits='576'>
-          <var-decl name='_M_bin' type-id='type-id-2877' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='375' column='1'/>
+          <var-decl name='_M_bin' type-id='type-id-2878' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='375' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='640'>
           <var-decl name='_M_bin_size' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='378' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='704'>
-          <var-decl name='_M_thread_freelist' type-id='type-id-2882' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='380' column='1'/>
+          <var-decl name='_M_thread_freelist' type-id='type-id-2883' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='380' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='768'>
           <var-decl name='_M_thread_freelist_initial' type-id='type-id-34' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='381' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__pool' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='362' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
-            <parameter type-id='type-id-2908'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
+            <parameter type-id='type-id-2909'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_get_bin' mangled-name='_ZN9__gnu_cxx6__poolILb1EE10_M_get_binEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <return type-id='type-id-2903'/>
+            <return type-id='type-id-2904'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_adjust_freelist' mangled-name='_ZN9__gnu_cxx6__poolILb1EE18_M_adjust_freelistERKNS1_11_Bin_recordEPNS1_13_Block_recordEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='344' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
-            <parameter type-id='type-id-2903'/>
-            <parameter type-id='type-id-2879'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
+            <parameter type-id='type-id-2904'/>
+            <parameter type-id='type-id-2880'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_destroy' mangled-name='_ZN9__gnu_cxx6__poolILb1EE10_M_destroyEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb1EE10_M_destroyEv@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_reserve_block' mangled-name='_ZN9__gnu_cxx6__poolILb1EE16_M_reserve_blockEmm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb1EE16_M_reserve_blockEmm@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-94'/>
@@ -37745,25 +37751,25 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_initialize' mangled-name='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEv@@GLIBCXX_3.4.6'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_initialize_once' mangled-name='_ZN9__gnu_cxx6__poolILb1EE18_M_initialize_onceEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_get_thread_id' mangled-name='_ZN9__gnu_cxx6__poolILb1EE16_M_get_thread_idEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb1EE16_M_get_thread_idEv@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <return type-id='type-id-91'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_reclaim_block' mangled-name='_ZN9__gnu_cxx6__poolILb1EE16_M_reclaim_blockEPcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb1EE16_M_reclaim_blockEPcm@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -37771,31 +37777,31 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_destroy_thread_key' mangled-name='_ZN9__gnu_cxx6__poolILb1EE21_M_destroy_thread_keyEPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb1EE21_M_destroy_thread_keyEPv@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
             <parameter type-id='type-id-34'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_initialize' mangled-name='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEPFvPvE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEPFvPvE@@GLIBCXX_3.4.4'>
-            <parameter type-id='type-id-2875' is-artificial='yes'/>
-            <parameter type-id='type-id-2909'/>
+            <parameter type-id='type-id-2876' is-artificial='yes'/>
+            <parameter type-id='type-id-2910'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__common_pool&lt;__gnu_cxx::__pool, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='389' column='1' id='type-id-2910'>
+      <class-decl name='__common_pool&lt;__gnu_cxx::__pool, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='389' column='1' id='type-id-2911'>
         <member-type access='public'>
-          <typedef-decl name='pool_type' type-id='type-id-2874' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='391' column='1' id='type-id-2857'/>
+          <typedef-decl name='pool_type' type-id='type-id-2875' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='391' column='1' id='type-id-2858'/>
         </member-type>
         <member-function access='public' static='yes'>
           <function-decl name='_S_get_pool' mangled-name='_ZN9__gnu_cxx13__common_poolINS_6__poolELb1EE11_S_get_poolEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='394' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <return type-id='type-id-2858'/>
+            <return type-id='type-id-2859'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__common_pool_base&lt;__gnu_cxx::__pool, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='424' column='1' id='type-id-2911'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2910'/>
+      <class-decl name='__common_pool_base&lt;__gnu_cxx::__pool, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='424' column='1' id='type-id-2912'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2911'/>
         <member-function access='public' static='yes'>
           <function-decl name='_S_initialize_once' mangled-name='_ZN9__gnu_cxx18__common_pool_baseINS_6__poolELb1EE18_S_initialize_onceEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='434' column='1' visibility='default' binding='global' size-in-bits='64'>
             <return type-id='type-id-5'/>
@@ -37807,210 +37813,210 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__mt_alloc_base&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='568' column='1' id='type-id-2863'>
+      <class-decl name='__mt_alloc_base&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='568' column='1' id='type-id-2864'>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='571' column='1' id='type-id-2912'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='571' column='1' id='type-id-2913'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='573' column='1' id='type-id-2913'/>
+          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='573' column='1' id='type-id-2914'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='574' column='1' id='type-id-2914'/>
+          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='574' column='1' id='type-id-2915'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='575' column='1' id='type-id-2915'/>
+          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='575' column='1' id='type-id-2916'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='576' column='1' id='type-id-2916'/>
+          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='576' column='1' id='type-id-2917'/>
         </member-type>
         <member-function access='private' const='yes'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx15__mt_alloc_baseIcE8max_sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='588' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2897' is-artificial='yes'/>
-            <return type-id='type-id-2912'/>
+            <parameter type-id='type-id-2898' is-artificial='yes'/>
+            <return type-id='type-id-2913'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__mt_alloc_base&lt;wchar_t&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='568' column='1' id='type-id-2865'>
+      <class-decl name='__mt_alloc_base&lt;wchar_t&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='568' column='1' id='type-id-2866'>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='571' column='1' id='type-id-2917'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='571' column='1' id='type-id-2918'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='573' column='1' id='type-id-2918'/>
+          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='573' column='1' id='type-id-2919'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='574' column='1' id='type-id-2919'/>
+          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='574' column='1' id='type-id-2920'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='575' column='1' id='type-id-2920'/>
+          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='575' column='1' id='type-id-2921'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='576' column='1' id='type-id-2921'/>
+          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='576' column='1' id='type-id-2922'/>
         </member-type>
         <member-function access='private' const='yes'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx15__mt_alloc_baseIwE8max_sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='588' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2899' is-artificial='yes'/>
-            <return type-id='type-id-2917'/>
+            <parameter type-id='type-id-2900' is-artificial='yes'/>
+            <return type-id='type-id-2918'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__mt_alloc&lt;char, __gnu_cxx::__common_pool_policy&lt;__gnu_cxx::__pool, true&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='631' column='1' id='type-id-2859'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2863'/>
+      <class-decl name='__mt_alloc&lt;char, __gnu_cxx::__common_pool_policy&lt;__gnu_cxx::__pool, true&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='631' column='1' id='type-id-2860'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2864'/>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='634' column='1' id='type-id-2922'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='634' column='1' id='type-id-2923'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='636' column='1' id='type-id-2923'/>
+          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='636' column='1' id='type-id-2924'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__pool_type' type-id='type-id-2857' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='642' column='1' id='type-id-2924'/>
+          <typedef-decl name='__pool_type' type-id='type-id-2858' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='642' column='1' id='type-id-2925'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='__mt_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='651' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__mt_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
-            <parameter type-id='type-id-2893'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
+            <parameter type-id='type-id-2894'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__mt_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='658' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__mt_alloc' mangled-name='_ZN9__gnu_cxx10__mt_allocIcNS_20__common_pool_policyINS_6__poolELb1EEEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='651' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__mt_alloc' mangled-name='_ZN9__gnu_cxx10__mt_allocIcNS_20__common_pool_policyINS_6__poolELb1EEEEC2ERKS4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
-            <parameter type-id='type-id-2893'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
+            <parameter type-id='type-id-2894'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__mt_alloc' mangled-name='_ZN9__gnu_cxx10__mt_allocIcNS_20__common_pool_policyINS_6__poolELb1EEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='658' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx10__mt_allocIcNS_20__common_pool_policyINS_6__poolELb1EEEE8allocateEmPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='680' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
-            <parameter type-id='type-id-2922'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
+            <parameter type-id='type-id-2923'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2923'/>
+            <return type-id='type-id-2924'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx10__mt_allocIcNS_20__common_pool_policyINS_6__poolELb1EEEE10deallocateEPcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='727' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
+            <parameter type-id='type-id-2924'/>
             <parameter type-id='type-id-2923'/>
-            <parameter type-id='type-id-2922'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_get_options' mangled-name='_ZN9__gnu_cxx10__mt_allocIcNS_20__common_pool_policyINS_6__poolELb1EEEE14_M_get_optionsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='667' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
-            <return type-id='type-id-2907'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
+            <return type-id='type-id-2908'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_set_options' mangled-name='_ZN9__gnu_cxx10__mt_allocIcNS_20__common_pool_policyINS_6__poolELb1EEEE14_M_set_optionsENS_11__pool_base5_TuneE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='674' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2860' is-artificial='yes'/>
-            <parameter type-id='type-id-2890'/>
+            <parameter type-id='type-id-2861' is-artificial='yes'/>
+            <parameter type-id='type-id-2891'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__mt_alloc&lt;wchar_t, __gnu_cxx::__common_pool_policy&lt;__gnu_cxx::__pool, true&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='631' column='1' id='type-id-2861'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2865'/>
+      <class-decl name='__mt_alloc&lt;wchar_t, __gnu_cxx::__common_pool_policy&lt;__gnu_cxx::__pool, true&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='631' column='1' id='type-id-2862'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2866'/>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='634' column='1' id='type-id-2925'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='634' column='1' id='type-id-2926'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='636' column='1' id='type-id-2926'/>
+          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='636' column='1' id='type-id-2927'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__pool_type' type-id='type-id-2857' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='642' column='1' id='type-id-2927'/>
+          <typedef-decl name='__pool_type' type-id='type-id-2858' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='642' column='1' id='type-id-2928'/>
         </member-type>
         <member-function access='private'>
           <function-decl name='__mt_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='651' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__mt_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
-            <parameter type-id='type-id-2895'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
+            <parameter type-id='type-id-2896'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__mt_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='658' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__mt_alloc' mangled-name='_ZN9__gnu_cxx10__mt_allocIwNS_20__common_pool_policyINS_6__poolELb1EEEEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='651' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__mt_alloc' mangled-name='_ZN9__gnu_cxx10__mt_allocIwNS_20__common_pool_policyINS_6__poolELb1EEEEC2ERKS4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
-            <parameter type-id='type-id-2895'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
+            <parameter type-id='type-id-2896'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__mt_alloc' mangled-name='_ZN9__gnu_cxx10__mt_allocIwNS_20__common_pool_policyINS_6__poolELb1EEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='658' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx10__mt_allocIwNS_20__common_pool_policyINS_6__poolELb1EEEE8allocateEmPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='680' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
-            <parameter type-id='type-id-2925'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
+            <parameter type-id='type-id-2926'/>
             <parameter type-id='type-id-34'/>
-            <return type-id='type-id-2926'/>
+            <return type-id='type-id-2927'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx10__mt_allocIwNS_20__common_pool_policyINS_6__poolELb1EEEE10deallocateEPwm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='727' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
+            <parameter type-id='type-id-2927'/>
             <parameter type-id='type-id-2926'/>
-            <parameter type-id='type-id-2925'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_get_options' mangled-name='_ZN9__gnu_cxx10__mt_allocIwNS_20__common_pool_policyINS_6__poolELb1EEEE14_M_get_optionsEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='667' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
-            <return type-id='type-id-2907'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
+            <return type-id='type-id-2908'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_set_options' mangled-name='_ZN9__gnu_cxx10__mt_allocIwNS_20__common_pool_policyINS_6__poolELb1EEEE14_M_set_optionsENS_11__pool_base5_TuneE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/mt_allocator.h' line='674' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2862' is-artificial='yes'/>
-            <parameter type-id='type-id-2890'/>
+            <parameter type-id='type-id-2863' is-artificial='yes'/>
+            <parameter type-id='type-id-2891'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -38018,76 +38024,76 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/ostream-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2263' const='yes' id='type-id-2928'/>
-    <qualified-type-def type-id='type-id-2257' const='yes' id='type-id-2929'/>
-    <pointer-type-def type-id='type-id-2929' size-in-bits='64' id='type-id-2270'/>
+    <qualified-type-def type-id='type-id-2264' const='yes' id='type-id-2929'/>
     <qualified-type-def type-id='type-id-2258' const='yes' id='type-id-2930'/>
+    <pointer-type-def type-id='type-id-2930' size-in-bits='64' id='type-id-2271'/>
     <qualified-type-def type-id='type-id-2259' const='yes' id='type-id-2931'/>
-    <qualified-type-def type-id='type-id-2264' const='yes' id='type-id-2932'/>
-    <pointer-type-def type-id='type-id-2932' size-in-bits='64' id='type-id-2266'/>
-    <qualified-type-def type-id='type-id-2277' const='yes' id='type-id-2933'/>
-    <qualified-type-def type-id='type-id-2271' const='yes' id='type-id-2934'/>
-    <pointer-type-def type-id='type-id-2934' size-in-bits='64' id='type-id-2284'/>
+    <qualified-type-def type-id='type-id-2260' const='yes' id='type-id-2932'/>
+    <qualified-type-def type-id='type-id-2265' const='yes' id='type-id-2933'/>
+    <pointer-type-def type-id='type-id-2933' size-in-bits='64' id='type-id-2267'/>
+    <qualified-type-def type-id='type-id-2278' const='yes' id='type-id-2934'/>
     <qualified-type-def type-id='type-id-2272' const='yes' id='type-id-2935'/>
+    <pointer-type-def type-id='type-id-2935' size-in-bits='64' id='type-id-2285'/>
     <qualified-type-def type-id='type-id-2273' const='yes' id='type-id-2936'/>
-    <qualified-type-def type-id='type-id-2278' const='yes' id='type-id-2937'/>
-    <pointer-type-def type-id='type-id-2937' size-in-bits='64' id='type-id-2280'/>
-    <pointer-type-def type-id='type-id-2539' size-in-bits='64' id='type-id-2800'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2262' size-in-bits='64' id='type-id-2938'/>
-    <pointer-type-def type-id='type-id-2939' size-in-bits='64' id='type-id-2269'/>
-    <pointer-type-def type-id='type-id-2940' size-in-bits='64' id='type-id-2268'/>
-    <pointer-type-def type-id='type-id-2264' size-in-bits='64' id='type-id-2265'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2276' size-in-bits='64' id='type-id-2941'/>
-    <pointer-type-def type-id='type-id-2942' size-in-bits='64' id='type-id-2283'/>
-    <pointer-type-def type-id='type-id-2943' size-in-bits='64' id='type-id-2282'/>
-    <pointer-type-def type-id='type-id-2278' size-in-bits='64' id='type-id-2279'/>
+    <qualified-type-def type-id='type-id-2274' const='yes' id='type-id-2937'/>
+    <qualified-type-def type-id='type-id-2279' const='yes' id='type-id-2938'/>
+    <pointer-type-def type-id='type-id-2938' size-in-bits='64' id='type-id-2281'/>
+    <pointer-type-def type-id='type-id-2540' size-in-bits='64' id='type-id-2801'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2263' size-in-bits='64' id='type-id-2939'/>
+    <pointer-type-def type-id='type-id-2940' size-in-bits='64' id='type-id-2270'/>
+    <pointer-type-def type-id='type-id-2941' size-in-bits='64' id='type-id-2269'/>
+    <pointer-type-def type-id='type-id-2265' size-in-bits='64' id='type-id-2266'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2277' size-in-bits='64' id='type-id-2942'/>
+    <pointer-type-def type-id='type-id-2943' size-in-bits='64' id='type-id-2284'/>
+    <pointer-type-def type-id='type-id-2944' size-in-bits='64' id='type-id-2283'/>
+    <pointer-type-def type-id='type-id-2279' size-in-bits='64' id='type-id-2280'/>
     <namespace-decl name='std'>
       <function-decl name='__check_facet&lt;std::num_put&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2699'/>
-        <return type-id='type-id-2538'/>
+        <parameter type-id='type-id-2700'/>
+        <return type-id='type-id-2539'/>
       </function-decl>
       <function-decl name='__check_facet&lt;std::num_put&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_ios.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2800'/>
-        <return type-id='type-id-2540'/>
+        <parameter type-id='type-id-2801'/>
+        <return type-id='type-id-2541'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKc@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='323' column='1'/>
+        <parameter type-id='type-id-2200' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='323' column='1'/>
         <parameter type-id='type-id-4' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream.tcc' line='323' column='1'/>
-        <return type-id='type-id-2199'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='__ostream_write&lt;char, std::char_traits&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197'/>
         <parameter type-id='type-id-4'/>
         <parameter type-id='type-id-897'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__ostream_write&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200'/>
         <parameter type-id='type-id-342'/>
         <parameter type-id='type-id-897'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__ostream_fill&lt;char, std::char_traits&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197'/>
         <parameter type-id='type-id-897'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__ostream_fill&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200'/>
         <parameter type-id='type-id-897'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__ostream_insert&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l@@GLIBCXX_3.4.9'>
-        <parameter type-id='type-id-2196' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='76' column='1'/>
+        <parameter type-id='type-id-2197' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='76' column='1'/>
         <parameter type-id='type-id-4' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='77' column='1'/>
         <parameter type-id='type-id-897' name='__n' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='77' column='1'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='__ostream_insert&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZSt16__ostream_insertIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt16__ostream_insertIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_l@@GLIBCXX_3.4.9'>
-        <parameter type-id='type-id-2199' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='76' column='1'/>
+        <parameter type-id='type-id-2200' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='76' column='1'/>
         <parameter type-id='type-id-342' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='77' column='1'/>
         <parameter type-id='type-id-897' name='__n' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ostream_insert.h' line='77' column='1'/>
-        <return type-id='type-id-2199'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='__copy_streambufs&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt17__copy_streambufsIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf.tcc' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt17__copy_streambufsIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_@@GLIBCXX_3.4.8'>
         <parameter type-id='type-id-808'/>
@@ -38100,236 +38106,236 @@ 
         <return type-id='type-id-897'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
-        <parameter type-id='type-id-2608' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
+        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
-        <parameter type-id='type-id-2608' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
+        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='78' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
-        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
+        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
-        <parameter type-id='type-id-2609' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
+        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='108' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_Setbase' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_Setbase@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
-        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
+        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_Setbase' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_Setbase@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
-        <parameter type-id='type-id-2610' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
+        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='142' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
-        <parameter type-id='type-id-2554' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
+        <parameter type-id='type-id-2555' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
-        <parameter type-id='type-id-2555' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
+        <parameter type-id='type-id-2556' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='177' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
-        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
+        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
-        <parameter type-id='type-id-2611' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
+        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='207' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St5_Setw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St5_Setw@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
-        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
+        <parameter type-id='type-id-2613' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St5_Setw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St5_Setw@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
-        <parameter type-id='type-id-2612' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
+        <parameter type-id='type-id-2613' name='__f' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='237' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1'/>
+        <parameter type-id='type-id-2200' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1'/>
         <parameter type-id='type-id-377' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='469' column='1'/>
-        <return type-id='type-id-2199'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1'/>
+        <parameter type-id='type-id-2197' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1'/>
         <parameter type-id='type-id-188' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='480' column='1'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_a' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_a@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='486' column='1'/>
+        <parameter type-id='type-id-2197' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='486' column='1'/>
         <parameter type-id='type-id-624' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='486' column='1'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_h' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_h@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='491' column='1'/>
+        <parameter type-id='type-id-2197' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='491' column='1'/>
         <parameter type-id='type-id-81' name='__c' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='491' column='1'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='511' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='511' column='1'/>
+        <parameter type-id='type-id-2200' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='511' column='1'/>
         <parameter type-id='type-id-342' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='511' column='1'/>
-        <return type-id='type-id-2199'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197'/>
         <parameter type-id='type-id-4'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1'/>
+        <parameter type-id='type-id-2197' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1'/>
         <parameter type-id='type-id-4' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='528' column='1'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKa' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='541' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKa@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='541' column='1'/>
-        <parameter type-id='type-id-2944' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='541' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='541' column='1'/>
+        <parameter type-id='type-id-2945' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='541' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='operator&lt;&lt; &lt;std::char_traits&lt;char&gt; &gt;' mangled-name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKh' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKh@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='546' column='1'/>
+        <parameter type-id='type-id-2197' name='__out' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='546' column='1'/>
         <parameter type-id='type-id-83' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='546' column='1'/>
-        <return type-id='type-id-2196'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='endl&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='endl&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZSt4endlIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt4endlIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='ends&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt4endsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt4endsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='ends&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZSt4endsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt4endsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='flush&lt;char, std::char_traits&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2196'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='flush&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2196' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
-        <return type-id='type-id-2196'/>
+        <parameter type-id='type-id-2197' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
+        <return type-id='type-id-2197'/>
       </function-decl>
       <function-decl name='flush&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2199'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
       <function-decl name='flush&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='584' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-2199' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
-        <return type-id='type-id-2199'/>
+        <parameter type-id='type-id-2200' name='__os' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ostream' line='562' column='1'/>
+        <return type-id='type-id-2200'/>
       </function-decl>
     </namespace-decl>
-    <function-type size-in-bits='64' id='type-id-2939'>
-      <parameter type-id='type-id-2938'/>
-      <return type-id='type-id-2938'/>
-    </function-type>
     <function-type size-in-bits='64' id='type-id-2940'>
-      <parameter type-id='type-id-2198'/>
-      <return type-id='type-id-2198'/>
+      <parameter type-id='type-id-2939'/>
+      <return type-id='type-id-2939'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-2942'>
-      <parameter type-id='type-id-2941'/>
-      <return type-id='type-id-2941'/>
+    <function-type size-in-bits='64' id='type-id-2941'>
+      <parameter type-id='type-id-2199'/>
+      <return type-id='type-id-2199'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-2943'>
-      <parameter type-id='type-id-2201'/>
-      <return type-id='type-id-2201'/>
+      <parameter type-id='type-id-2942'/>
+      <return type-id='type-id-2942'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-2944'>
+      <parameter type-id='type-id-2202'/>
+      <return type-id='type-id-2202'/>
     </function-type>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/parallel_settings.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <typedef-decl name='uint64_t' type-id='type-id-44' filepath='/usr/include/stdint.h' line='56' column='1' id='type-id-2945'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2946' size-in-bits='64' id='type-id-2947'/>
-    <pointer-type-def type-id='type-id-2946' size-in-bits='64' id='type-id-2948'/>
-    <qualified-type-def type-id='type-id-2946' const='yes' id='type-id-2949'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2949' size-in-bits='64' id='type-id-2950'/>
+    <typedef-decl name='uint64_t' type-id='type-id-44' filepath='/usr/include/stdint.h' line='56' column='1' id='type-id-2946'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2947' size-in-bits='64' id='type-id-2948'/>
+    <pointer-type-def type-id='type-id-2947' size-in-bits='64' id='type-id-2949'/>
+    <qualified-type-def type-id='type-id-2947' const='yes' id='type-id-2950'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2950' size-in-bits='64' id='type-id-2951'/>
     <namespace-decl name='__gnu_parallel'>
-      <class-decl name='_Settings' size-in-bits='2816' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='123' column='1' id='type-id-2946'>
+      <class-decl name='_Settings' size-in-bits='2816' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='123' column='1' id='type-id-2947'>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='algorithm_strategy' type-id='type-id-2951' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='125' column='1'/>
+          <var-decl name='algorithm_strategy' type-id='type-id-2952' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='125' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='32'>
-          <var-decl name='sort_algorithm' type-id='type-id-2952' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='127' column='1'/>
+          <var-decl name='sort_algorithm' type-id='type-id-2953' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='127' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='64'>
-          <var-decl name='partial_sum_algorithm' type-id='type-id-2953' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='128' column='1'/>
+          <var-decl name='partial_sum_algorithm' type-id='type-id-2954' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='128' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='96'>
-          <var-decl name='multiway_merge_algorithm' type-id='type-id-2954' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='129' column='1'/>
+          <var-decl name='multiway_merge_algorithm' type-id='type-id-2955' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='129' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='128'>
-          <var-decl name='find_algorithm' type-id='type-id-2955' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='130' column='1'/>
+          <var-decl name='find_algorithm' type-id='type-id-2956' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='130' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='160'>
-          <var-decl name='sort_splitting' type-id='type-id-2956' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='132' column='1'/>
+          <var-decl name='sort_splitting' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='132' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='192'>
-          <var-decl name='merge_splitting' type-id='type-id-2956' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='133' column='1'/>
+          <var-decl name='merge_splitting' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='133' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='224'>
-          <var-decl name='multiway_merge_splitting' type-id='type-id-2956' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='134' column='1'/>
+          <var-decl name='multiway_merge_splitting' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='134' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='256'>
-          <var-decl name='accumulate_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='139' column='1'/>
+          <var-decl name='accumulate_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='139' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='320'>
           <var-decl name='adjacent_difference_minimal_n' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='142' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='384'>
-          <var-decl name='count_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='145' column='1'/>
+          <var-decl name='count_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='145' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='448'>
-          <var-decl name='fill_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='148' column='1'/>
+          <var-decl name='fill_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='148' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='512'>
           <var-decl name='find_increasing_factor' type-id='type-id-254' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='151' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='576'>
-          <var-decl name='find_initial_block_size' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='154' column='1'/>
+          <var-decl name='find_initial_block_size' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='154' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='640'>
-          <var-decl name='find_maximum_block_size' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='157' column='1'/>
+          <var-decl name='find_maximum_block_size' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='157' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='704'>
-          <var-decl name='find_sequential_search_size' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='160' column='1'/>
+          <var-decl name='find_sequential_search_size' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='160' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='768'>
-          <var-decl name='for_each_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='163' column='1'/>
+          <var-decl name='for_each_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='163' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='832'>
-          <var-decl name='generate_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='166' column='1'/>
+          <var-decl name='generate_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='166' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='896'>
-          <var-decl name='max_element_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='169' column='1'/>
+          <var-decl name='max_element_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='169' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='960'>
-          <var-decl name='merge_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='172' column='1'/>
+          <var-decl name='merge_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='172' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1024'>
           <var-decl name='merge_oversampling' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='175' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1088'>
-          <var-decl name='min_element_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='178' column='1'/>
+          <var-decl name='min_element_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='178' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1152'>
-          <var-decl name='multiway_merge_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='181' column='1'/>
+          <var-decl name='multiway_merge_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='181' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1216'>
           <var-decl name='multiway_merge_minimal_k' type-id='type-id-6' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='184' column='1'/>
@@ -38338,19 +38344,19 @@ 
           <var-decl name='multiway_merge_oversampling' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='187' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1280'>
-          <var-decl name='nth_element_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='190' column='1'/>
+          <var-decl name='nth_element_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='190' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1344'>
-          <var-decl name='partition_chunk_size' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='193' column='1'/>
+          <var-decl name='partition_chunk_size' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='193' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1408'>
           <var-decl name='partition_chunk_share' type-id='type-id-254' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='197' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1472'>
-          <var-decl name='partition_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='200' column='1'/>
+          <var-decl name='partition_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='200' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1536'>
-          <var-decl name='partial_sort_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='203' column='1'/>
+          <var-decl name='partial_sort_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='203' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1600'>
           <var-decl name='partial_sum_dilation' type-id='type-id-374' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='207' column='1'/>
@@ -38362,22 +38368,22 @@ 
           <var-decl name='random_shuffle_minimal_n' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='213' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1728'>
-          <var-decl name='replace_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='216' column='1'/>
+          <var-decl name='replace_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='216' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1792'>
-          <var-decl name='set_difference_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='219' column='1'/>
+          <var-decl name='set_difference_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='219' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1856'>
-          <var-decl name='set_intersection_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='222' column='1'/>
+          <var-decl name='set_intersection_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='222' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1920'>
-          <var-decl name='set_symmetric_difference_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='225' column='1'/>
+          <var-decl name='set_symmetric_difference_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='225' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='1984'>
-          <var-decl name='set_union_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='228' column='1'/>
+          <var-decl name='set_union_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='228' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2048'>
-          <var-decl name='sort_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='231' column='1'/>
+          <var-decl name='sort_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='231' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2112'>
           <var-decl name='sort_mwms_oversampling' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='234' column='1'/>
@@ -38386,16 +38392,16 @@ 
           <var-decl name='sort_qs_num_samples_preset' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='237' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2176'>
-          <var-decl name='sort_qsb_base_case_maximal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='241' column='1'/>
+          <var-decl name='sort_qsb_base_case_maximal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='241' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2240'>
-          <var-decl name='transform_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='244' column='1'/>
+          <var-decl name='transform_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='244' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2304'>
-          <var-decl name='unique_copy_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='247' column='1'/>
+          <var-decl name='unique_copy_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='247' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2368'>
-          <var-decl name='workstealing_chunk_size' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='249' column='1'/>
+          <var-decl name='workstealing_chunk_size' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='249' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2432'>
           <var-decl name='L1_cache_size' type-id='type-id-376' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='254' column='1'/>
@@ -38410,115 +38416,115 @@ 
           <var-decl name='cache_line_size' type-id='type-id-39' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='265' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2624'>
-          <var-decl name='qsb_steals' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='270' column='1'/>
+          <var-decl name='qsb_steals' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='270' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2688'>
-          <var-decl name='search_minimal_n' type-id='type-id-2957' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='273' column='1'/>
+          <var-decl name='search_minimal_n' type-id='type-id-2958' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='273' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='2752'>
           <var-decl name='find_scale_factor' type-id='type-id-374' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='276' column='1'/>
         </data-member>
         <member-function access='public' constructor='yes'>
           <function-decl name='_Settings' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2948' is-artificial='yes'/>
+            <parameter type-id='type-id-2949' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='get' mangled-name='_ZN14__gnu_parallel9_Settings3getEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN14__gnu_parallel9_Settings3getEv@@GLIBCXX_3.4.10'>
-            <return type-id='type-id-2950'/>
+            <return type-id='type-id-2951'/>
           </function-decl>
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='set' mangled-name='_ZN14__gnu_parallel9_Settings3setERS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/settings.h' line='284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN14__gnu_parallel9_Settings3setERS0_@@GLIBCXX_3.4.10'>
-            <parameter type-id='type-id-2947'/>
+            <parameter type-id='type-id-2948'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <enum-decl name='_AlgorithmStrategy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='67' column='1' id='type-id-2951'>
+      <enum-decl name='_AlgorithmStrategy' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='67' column='1' id='type-id-2952'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='heuristic' value='0'/>
         <enumerator name='force_sequential' value='1'/>
         <enumerator name='force_parallel' value='2'/>
       </enum-decl>
-      <enum-decl name='_SortAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='76' column='1' id='type-id-2952'>
+      <enum-decl name='_SortAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='76' column='1' id='type-id-2953'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='MWMS' value='0'/>
         <enumerator name='QS' value='1'/>
         <enumerator name='QS_BALANCED' value='2'/>
       </enum-decl>
-      <enum-decl name='_MultiwayMergeAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='85' column='1' id='type-id-2954'>
+      <enum-decl name='_MultiwayMergeAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='85' column='1' id='type-id-2955'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='LOSER_TREE' value='0'/>
       </enum-decl>
-      <enum-decl name='_PartialSumAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='91' column='1' id='type-id-2953'>
+      <enum-decl name='_PartialSumAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='91' column='1' id='type-id-2954'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='RECURSIVE' value='0'/>
         <enumerator name='LINEAR' value='1'/>
       </enum-decl>
-      <enum-decl name='_SplittingAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='98' column='1' id='type-id-2956'>
+      <enum-decl name='_SplittingAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='98' column='1' id='type-id-2957'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='SAMPLING' value='0'/>
         <enumerator name='EXACT' value='1'/>
       </enum-decl>
-      <enum-decl name='_FindAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='106' column='1' id='type-id-2955'>
+      <enum-decl name='_FindAlgorithm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='106' column='1' id='type-id-2956'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='GROWING_BLOCKS' value='0'/>
         <enumerator name='CONSTANT_SIZE_BLOCKS' value='1'/>
         <enumerator name='EQUAL_SPLIT' value='2'/>
       </enum-decl>
-      <typedef-decl name='_SequenceIndex' type-id='type-id-2945' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='117' column='1' id='type-id-2957'/>
+      <typedef-decl name='_SequenceIndex' type-id='type-id-2946' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='117' column='1' id='type-id-2958'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/pool_allocator.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-2958' size-in-bits='1024' id='type-id-2959'>
-      <subrange length='16' type-id='type-id-176' id='type-id-1307'/>
+    <array-type-def dimensions='1' type-id='type-id-2959' size-in-bits='1024' id='type-id-2960'>
+      <subrange length='16' type-id='type-id-176' id='type-id-1308'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-2960' size-in-bits='1024' id='type-id-2961'>
-      <subrange length='16' type-id='type-id-176' id='type-id-1307'/>
+    <array-type-def dimensions='1' type-id='type-id-2961' size-in-bits='1024' id='type-id-2962'>
+      <subrange length='16' type-id='type-id-176' id='type-id-1308'/>
     </array-type-def>
-    <pointer-type-def type-id='type-id-2962' size-in-bits='64' id='type-id-2963'/>
-    <pointer-type-def type-id='type-id-2964' size-in-bits='64' id='type-id-2965'/>
-    <pointer-type-def type-id='type-id-2966' size-in-bits='64' id='type-id-2967'/>
-    <pointer-type-def type-id='type-id-2968' size-in-bits='64' id='type-id-2960'/>
-    <qualified-type-def type-id='type-id-2960' volatile='yes' id='type-id-2958'/>
-    <pointer-type-def type-id='type-id-2958' size-in-bits='64' id='type-id-2969'/>
-    <qualified-type-def type-id='type-id-2962' const='yes' id='type-id-2970'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2970' size-in-bits='64' id='type-id-2971'/>
-    <pointer-type-def type-id='type-id-2970' size-in-bits='64' id='type-id-2972'/>
-    <qualified-type-def type-id='type-id-2973' const='yes' id='type-id-2974'/>
-    <qualified-type-def type-id='type-id-2975' const='yes' id='type-id-2976'/>
-    <qualified-type-def type-id='type-id-2964' const='yes' id='type-id-2977'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2977' size-in-bits='64' id='type-id-2978'/>
-    <pointer-type-def type-id='type-id-2977' size-in-bits='64' id='type-id-2979'/>
-    <qualified-type-def type-id='type-id-2980' const='yes' id='type-id-2981'/>
-    <qualified-type-def type-id='type-id-2982' const='yes' id='type-id-2983'/>
-    <reference-type-def kind='lvalue' type-id='type-id-6' size-in-bits='64' id='type-id-1056'/>
+    <pointer-type-def type-id='type-id-2963' size-in-bits='64' id='type-id-2964'/>
+    <pointer-type-def type-id='type-id-2965' size-in-bits='64' id='type-id-2966'/>
+    <pointer-type-def type-id='type-id-2967' size-in-bits='64' id='type-id-2968'/>
+    <pointer-type-def type-id='type-id-2969' size-in-bits='64' id='type-id-2961'/>
+    <qualified-type-def type-id='type-id-2961' volatile='yes' id='type-id-2959'/>
+    <pointer-type-def type-id='type-id-2959' size-in-bits='64' id='type-id-2970'/>
+    <qualified-type-def type-id='type-id-2963' const='yes' id='type-id-2971'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2971' size-in-bits='64' id='type-id-2972'/>
+    <pointer-type-def type-id='type-id-2971' size-in-bits='64' id='type-id-2973'/>
+    <qualified-type-def type-id='type-id-2974' const='yes' id='type-id-2975'/>
+    <qualified-type-def type-id='type-id-2976' const='yes' id='type-id-2977'/>
+    <qualified-type-def type-id='type-id-2965' const='yes' id='type-id-2978'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2978' size-in-bits='64' id='type-id-2979'/>
+    <pointer-type-def type-id='type-id-2978' size-in-bits='64' id='type-id-2980'/>
+    <qualified-type-def type-id='type-id-2981' const='yes' id='type-id-2982'/>
+    <qualified-type-def type-id='type-id-2983' const='yes' id='type-id-2984'/>
+    <reference-type-def kind='lvalue' type-id='type-id-6' size-in-bits='64' id='type-id-1057'/>
     <namespace-decl name='__gnu_cxx'>
-      <class-decl name='__pool_alloc_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='77' column='1' id='type-id-2966'>
+      <class-decl name='__pool_alloc_base' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='77' column='1' id='type-id-2967'>
         <member-type access='protected'>
-          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='81' column='1' id='type-id-2984'>
+          <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='81' column='1' id='type-id-2985'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='_S_align' value='8'/>
           </enum-decl>
         </member-type>
         <member-type access='protected'>
-          <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='82' column='1' id='type-id-2985'>
+          <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='82' column='1' id='type-id-2986'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='_S_max_bytes' value='128'/>
           </enum-decl>
         </member-type>
         <member-type access='protected'>
-          <enum-decl name='__anonymous_enum__2' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='83' column='1' id='type-id-2986'>
+          <enum-decl name='__anonymous_enum__2' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='83' column='1' id='type-id-2987'>
             <underlying-type type-id='type-id-37'/>
             <enumerator name='_S_free_list_size' value='16'/>
           </enum-decl>
         </member-type>
         <member-type access='protected'>
-          <union-decl name='_Obj' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='85' column='1' id='type-id-2968'>
+          <union-decl name='_Obj' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='85' column='1' id='type-id-2969'>
             <data-member access='public'>
-              <var-decl name='_M_free_list_link' type-id='type-id-2960' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='87' column='1'/>
+              <var-decl name='_M_free_list_link' type-id='type-id-2961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='87' column='1'/>
             </data-member>
             <data-member access='public'>
               <var-decl name='_M_client_data' type-id='type-id-617' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='88' column='1'/>
@@ -38526,7 +38532,7 @@ 
           </union-decl>
         </member-type>
         <data-member access='protected' static='yes'>
-          <var-decl name='_S_free_list' type-id='type-id-2959' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base12_S_free_listE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='91' column='1'/>
+          <var-decl name='_S_free_list' type-id='type-id-2960' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base12_S_free_listE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='91' column='1'/>
         </data-member>
         <data-member access='protected' static='yes'>
           <var-decl name='_S_start_free' type-id='type-id-94' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base13_S_start_freeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='94' column='1'/>
@@ -38539,260 +38545,260 @@ 
         </data-member>
         <member-function access='protected'>
           <function-decl name='_M_round_up' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base11_M_round_upEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2967' is-artificial='yes'/>
+            <parameter type-id='type-id-2968' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-91'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_get_free_list' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base16_M_get_free_listEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx17__pool_alloc_base16_M_get_free_listEm@@GLIBCXX_3.4.2'>
-            <parameter type-id='type-id-2967' is-artificial='yes'/>
+            <parameter type-id='type-id-2968' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <return type-id='type-id-2969'/>
+            <return type-id='type-id-2970'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_get_mutex' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base12_M_get_mutexEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx17__pool_alloc_base12_M_get_mutexEv@@GLIBCXX_3.4.2'>
-            <parameter type-id='type-id-2967' is-artificial='yes'/>
+            <parameter type-id='type-id-2968' is-artificial='yes'/>
             <return type-id='type-id-62'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_allocate_chunk' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base17_M_allocate_chunkEmRi' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2967' is-artificial='yes'/>
+            <parameter type-id='type-id-2968' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-1056'/>
+            <parameter type-id='type-id-1057'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='protected'>
           <function-decl name='_M_refill' mangled-name='_ZN9__gnu_cxx17__pool_alloc_base9_M_refillEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx17__pool_alloc_base9_M_refillEm@@GLIBCXX_3.4.2'>
-            <parameter type-id='type-id-2967' is-artificial='yes'/>
+            <parameter type-id='type-id-2968' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-34'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__pool_alloc&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='125' column='1' id='type-id-2962'>
-        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-2966'/>
+      <class-decl name='__pool_alloc&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='125' column='1' id='type-id-2963'>
+        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-2967'/>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='131' column='1' id='type-id-2987'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='131' column='1' id='type-id-2988'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='133' column='1' id='type-id-2988'/>
+          <typedef-decl name='pointer' type-id='type-id-94' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='133' column='1' id='type-id-2989'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='134' column='1' id='type-id-2989'/>
+          <typedef-decl name='const_pointer' type-id='type-id-4' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='134' column='1' id='type-id-2990'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='135' column='1' id='type-id-2975'/>
+          <typedef-decl name='reference' type-id='type-id-353' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='135' column='1' id='type-id-2976'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='136' column='1' id='type-id-2973'/>
+          <typedef-decl name='const_reference' type-id='type-id-669' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='136' column='1' id='type-id-2974'/>
         </member-type>
         <data-member access='private' static='yes'>
           <var-decl name='_S_force_new' type-id='type-id-594' mangled-name='_ZN9__gnu_cxx12__pool_allocIcE12_S_force_newE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='203' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__pool_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
-            <parameter type-id='type-id-2971'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
+            <parameter type-id='type-id-2972'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__pool_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx12__pool_allocIcE8max_sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2972' is-artificial='yes'/>
-            <return type-id='type-id-2987'/>
+            <parameter type-id='type-id-2973' is-artificial='yes'/>
+            <return type-id='type-id-2988'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool_alloc' mangled-name='_ZN9__gnu_cxx12__pool_allocIcEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool_alloc' mangled-name='_ZN9__gnu_cxx12__pool_allocIcEC2ERKS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
-            <parameter type-id='type-id-2971'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
+            <parameter type-id='type-id-2972'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__pool_alloc' mangled-name='_ZN9__gnu_cxx12__pool_allocIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx12__pool_allocIcE7addressERc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2972' is-artificial='yes'/>
-            <parameter type-id='type-id-2975'/>
-            <return type-id='type-id-2988'/>
+            <parameter type-id='type-id-2973' is-artificial='yes'/>
+            <parameter type-id='type-id-2976'/>
+            <return type-id='type-id-2989'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx12__pool_allocIcE7addressERKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2972' is-artificial='yes'/>
-            <parameter type-id='type-id-2973'/>
-            <return type-id='type-id-2989'/>
+            <parameter type-id='type-id-2973' is-artificial='yes'/>
+            <parameter type-id='type-id-2974'/>
+            <return type-id='type-id-2990'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='construct' mangled-name='_ZN9__gnu_cxx12__pool_allocIcE9constructEPcRKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
-            <parameter type-id='type-id-2988'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
+            <parameter type-id='type-id-2989'/>
             <parameter type-id='type-id-669'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='destroy' mangled-name='_ZN9__gnu_cxx12__pool_allocIcE7destroyEPc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
-            <parameter type-id='type-id-2988'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
+            <parameter type-id='type-id-2989'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx12__pool_allocIcE8allocateEmPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
-            <parameter type-id='type-id-2987'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
+            <parameter type-id='type-id-2988'/>
             <parameter type-id='type-id-34'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx12__pool_allocIcE10deallocateEPcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2963' is-artificial='yes'/>
+            <parameter type-id='type-id-2964' is-artificial='yes'/>
+            <parameter type-id='type-id-2989'/>
             <parameter type-id='type-id-2988'/>
-            <parameter type-id='type-id-2987'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__pool_alloc&lt;wchar_t&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='125' column='1' id='type-id-2964'>
-        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-2966'/>
+      <class-decl name='__pool_alloc&lt;wchar_t&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='125' column='1' id='type-id-2965'>
+        <base-class access='private' layout-offset-in-bits='0' type-id='type-id-2967'/>
         <member-type access='private'>
-          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='131' column='1' id='type-id-2990'/>
+          <typedef-decl name='size_type' type-id='type-id-91' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='131' column='1' id='type-id-2991'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='133' column='1' id='type-id-2991'/>
+          <typedef-decl name='pointer' type-id='type-id-334' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='133' column='1' id='type-id-2992'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='134' column='1' id='type-id-2992'/>
+          <typedef-decl name='const_pointer' type-id='type-id-342' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='134' column='1' id='type-id-2993'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='135' column='1' id='type-id-2982'/>
+          <typedef-decl name='reference' type-id='type-id-359' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='135' column='1' id='type-id-2983'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='136' column='1' id='type-id-2980'/>
+          <typedef-decl name='const_reference' type-id='type-id-780' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='136' column='1' id='type-id-2981'/>
         </member-type>
         <data-member access='private' static='yes'>
           <var-decl name='_S_force_new' type-id='type-id-594' mangled-name='_ZN9__gnu_cxx12__pool_allocIwE12_S_force_newE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='203' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__pool_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
-            <parameter type-id='type-id-2978'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
+            <parameter type-id='type-id-2979'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__pool_alloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx12__pool_allocIwE8max_sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2979' is-artificial='yes'/>
-            <return type-id='type-id-2990'/>
+            <parameter type-id='type-id-2980' is-artificial='yes'/>
+            <return type-id='type-id-2991'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool_alloc' mangled-name='_ZN9__gnu_cxx12__pool_allocIwEC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__pool_alloc' mangled-name='_ZN9__gnu_cxx12__pool_allocIwEC2ERKS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
-            <parameter type-id='type-id-2978'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
+            <parameter type-id='type-id-2979'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__pool_alloc' mangled-name='_ZN9__gnu_cxx12__pool_allocIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx12__pool_allocIwE7addressERw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2979' is-artificial='yes'/>
-            <parameter type-id='type-id-2982'/>
-            <return type-id='type-id-2991'/>
+            <parameter type-id='type-id-2980' is-artificial='yes'/>
+            <parameter type-id='type-id-2983'/>
+            <return type-id='type-id-2992'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='address' mangled-name='_ZNK9__gnu_cxx12__pool_allocIwE7addressERKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2979' is-artificial='yes'/>
-            <parameter type-id='type-id-2980'/>
-            <return type-id='type-id-2992'/>
+            <parameter type-id='type-id-2980' is-artificial='yes'/>
+            <parameter type-id='type-id-2981'/>
+            <return type-id='type-id-2993'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='construct' mangled-name='_ZN9__gnu_cxx12__pool_allocIwE9constructEPwRKw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
-            <parameter type-id='type-id-2991'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
+            <parameter type-id='type-id-2992'/>
             <parameter type-id='type-id-780'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='destroy' mangled-name='_ZN9__gnu_cxx12__pool_allocIwE7destroyEPw' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
-            <parameter type-id='type-id-2991'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
+            <parameter type-id='type-id-2992'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx12__pool_allocIwE8allocateEmPKv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
-            <parameter type-id='type-id-2990'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
+            <parameter type-id='type-id-2991'/>
             <parameter type-id='type-id-34'/>
             <return type-id='type-id-334'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx12__pool_allocIwE10deallocateEPwm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/pool_allocator.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2965' is-artificial='yes'/>
+            <parameter type-id='type-id-2966' is-artificial='yes'/>
+            <parameter type-id='type-id-2992'/>
             <parameter type-id='type-id-2991'/>
-            <parameter type-id='type-id-2990'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
@@ -38800,65 +38806,65 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/sstream-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2993' const='yes' id='type-id-2994'/>
-    <pointer-type-def type-id='type-id-2994' size-in-bits='64' id='type-id-2995'/>
-    <qualified-type-def type-id='type-id-2996' const='yes' id='type-id-2997'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2997' size-in-bits='64' id='type-id-2998'/>
-    <qualified-type-def type-id='type-id-2999' const='yes' id='type-id-3000'/>
-    <pointer-type-def type-id='type-id-3000' size-in-bits='64' id='type-id-3001'/>
-    <qualified-type-def type-id='type-id-3002' const='yes' id='type-id-3003'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3003' size-in-bits='64' id='type-id-3004'/>
-    <qualified-type-def type-id='type-id-2241' const='yes' id='type-id-3005'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3005' size-in-bits='64' id='type-id-2243'/>
-    <qualified-type-def type-id='type-id-2245' const='yes' id='type-id-3006'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3006' size-in-bits='64' id='type-id-2247'/>
-    <qualified-type-def type-id='type-id-2227' const='yes' id='type-id-3007'/>
-    <qualified-type-def type-id='type-id-2226' const='yes' id='type-id-3008'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3008' size-in-bits='64' id='type-id-2228'/>
-    <qualified-type-def type-id='type-id-2221' const='yes' id='type-id-3009'/>
-    <qualified-type-def type-id='type-id-2224' const='yes' id='type-id-3010'/>
-    <qualified-type-def type-id='type-id-2237' const='yes' id='type-id-3011'/>
-    <qualified-type-def type-id='type-id-2236' const='yes' id='type-id-3012'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3012' size-in-bits='64' id='type-id-2238'/>
-    <qualified-type-def type-id='type-id-2231' const='yes' id='type-id-3013'/>
-    <qualified-type-def type-id='type-id-2234' const='yes' id='type-id-3014'/>
-    <qualified-type-def type-id='type-id-3015' const='yes' id='type-id-3016'/>
-    <pointer-type-def type-id='type-id-3016' size-in-bits='64' id='type-id-3017'/>
-    <qualified-type-def type-id='type-id-3018' const='yes' id='type-id-3019'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3019' size-in-bits='64' id='type-id-3020'/>
-    <qualified-type-def type-id='type-id-3021' const='yes' id='type-id-3022'/>
-    <pointer-type-def type-id='type-id-3022' size-in-bits='64' id='type-id-3023'/>
-    <qualified-type-def type-id='type-id-3024' const='yes' id='type-id-3025'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3025' size-in-bits='64' id='type-id-3026'/>
-    <pointer-type-def type-id='type-id-2993' size-in-bits='64' id='type-id-3027'/>
-    <pointer-type-def type-id='type-id-3028' size-in-bits='64' id='type-id-3029'/>
-    <pointer-type-def type-id='type-id-2999' size-in-bits='64' id='type-id-3030'/>
-    <pointer-type-def type-id='type-id-3031' size-in-bits='64' id='type-id-3032'/>
-    <pointer-type-def type-id='type-id-2242' size-in-bits='64' id='type-id-2244'/>
-    <pointer-type-def type-id='type-id-2246' size-in-bits='64' id='type-id-2248'/>
-    <pointer-type-def type-id='type-id-2225' size-in-bits='64' id='type-id-2230'/>
-    <pointer-type-def type-id='type-id-2221' size-in-bits='64' id='type-id-2229'/>
-    <pointer-type-def type-id='type-id-2235' size-in-bits='64' id='type-id-2240'/>
-    <pointer-type-def type-id='type-id-2231' size-in-bits='64' id='type-id-2239'/>
-    <pointer-type-def type-id='type-id-3015' size-in-bits='64' id='type-id-3033'/>
-    <pointer-type-def type-id='type-id-3034' size-in-bits='64' id='type-id-3035'/>
-    <pointer-type-def type-id='type-id-3021' size-in-bits='64' id='type-id-3036'/>
-    <pointer-type-def type-id='type-id-3037' size-in-bits='64' id='type-id-3038'/>
+    <qualified-type-def type-id='type-id-2994' const='yes' id='type-id-2995'/>
+    <pointer-type-def type-id='type-id-2995' size-in-bits='64' id='type-id-2996'/>
+    <qualified-type-def type-id='type-id-2997' const='yes' id='type-id-2998'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2998' size-in-bits='64' id='type-id-2999'/>
+    <qualified-type-def type-id='type-id-3000' const='yes' id='type-id-3001'/>
+    <pointer-type-def type-id='type-id-3001' size-in-bits='64' id='type-id-3002'/>
+    <qualified-type-def type-id='type-id-3003' const='yes' id='type-id-3004'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3004' size-in-bits='64' id='type-id-3005'/>
+    <qualified-type-def type-id='type-id-2242' const='yes' id='type-id-3006'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3006' size-in-bits='64' id='type-id-2244'/>
+    <qualified-type-def type-id='type-id-2246' const='yes' id='type-id-3007'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3007' size-in-bits='64' id='type-id-2248'/>
+    <qualified-type-def type-id='type-id-2228' const='yes' id='type-id-3008'/>
+    <qualified-type-def type-id='type-id-2227' const='yes' id='type-id-3009'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3009' size-in-bits='64' id='type-id-2229'/>
+    <qualified-type-def type-id='type-id-2222' const='yes' id='type-id-3010'/>
+    <qualified-type-def type-id='type-id-2225' const='yes' id='type-id-3011'/>
+    <qualified-type-def type-id='type-id-2238' const='yes' id='type-id-3012'/>
+    <qualified-type-def type-id='type-id-2237' const='yes' id='type-id-3013'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3013' size-in-bits='64' id='type-id-2239'/>
+    <qualified-type-def type-id='type-id-2232' const='yes' id='type-id-3014'/>
+    <qualified-type-def type-id='type-id-2235' const='yes' id='type-id-3015'/>
+    <qualified-type-def type-id='type-id-3016' const='yes' id='type-id-3017'/>
+    <pointer-type-def type-id='type-id-3017' size-in-bits='64' id='type-id-3018'/>
+    <qualified-type-def type-id='type-id-3019' const='yes' id='type-id-3020'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3020' size-in-bits='64' id='type-id-3021'/>
+    <qualified-type-def type-id='type-id-3022' const='yes' id='type-id-3023'/>
+    <pointer-type-def type-id='type-id-3023' size-in-bits='64' id='type-id-3024'/>
+    <qualified-type-def type-id='type-id-3025' const='yes' id='type-id-3026'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3026' size-in-bits='64' id='type-id-3027'/>
+    <pointer-type-def type-id='type-id-2994' size-in-bits='64' id='type-id-3028'/>
+    <pointer-type-def type-id='type-id-3029' size-in-bits='64' id='type-id-3030'/>
+    <pointer-type-def type-id='type-id-3000' size-in-bits='64' id='type-id-3031'/>
+    <pointer-type-def type-id='type-id-3032' size-in-bits='64' id='type-id-3033'/>
+    <pointer-type-def type-id='type-id-2243' size-in-bits='64' id='type-id-2245'/>
+    <pointer-type-def type-id='type-id-2247' size-in-bits='64' id='type-id-2249'/>
+    <pointer-type-def type-id='type-id-2226' size-in-bits='64' id='type-id-2231'/>
+    <pointer-type-def type-id='type-id-2222' size-in-bits='64' id='type-id-2230'/>
+    <pointer-type-def type-id='type-id-2236' size-in-bits='64' id='type-id-2241'/>
+    <pointer-type-def type-id='type-id-2232' size-in-bits='64' id='type-id-2240'/>
+    <pointer-type-def type-id='type-id-3016' size-in-bits='64' id='type-id-3034'/>
+    <pointer-type-def type-id='type-id-3035' size-in-bits='64' id='type-id-3036'/>
+    <pointer-type-def type-id='type-id-3022' size-in-bits='64' id='type-id-3037'/>
+    <pointer-type-def type-id='type-id-3038' size-in-bits='64' id='type-id-3039'/>
     <namespace-decl name='std'>
-      <class-decl name='basic_istringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='263' column='1' id='type-id-2993'>
+      <class-decl name='basic_istringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='263' column='1' id='type-id-2994'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-796'/>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='277' column='1' id='type-id-2996'/>
+          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='277' column='1' id='type-id-2997'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__stringbuf_type' type-id='type-id-2164' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='278' column='1' id='type-id-3028'/>
+          <typedef-decl name='__stringbuf_type' type-id='type-id-2165' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='278' column='1' id='type-id-3029'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_stringbuf' type-id='type-id-3028' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='282' column='1'/>
+          <var-decl name='_M_stringbuf' type-id='type-id-3029' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='282' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_istringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -38867,17 +38873,17 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2998'/>
+            <parameter type-id='type-id-2999'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -38886,7 +38892,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -38895,46 +38901,46 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2998'/>
+            <parameter type-id='type-id-2999'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-2998'/>
+            <parameter type-id='type-id-2999'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='339' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2995' is-artificial='yes'/>
-            <return type-id='type-id-3029'/>
+            <parameter type-id='type-id-2996' is-artificial='yes'/>
+            <return type-id='type-id-3030'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='347' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-2995' is-artificial='yes'/>
-            <return type-id='type-id-2996'/>
+            <parameter type-id='type-id-2996' is-artificial='yes'/>
+            <return type-id='type-id-2997'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strERKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='357' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
-            <parameter type-id='type-id-2998'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
+            <parameter type-id='type-id-2999'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -38942,7 +38948,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -38950,7 +38956,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -38958,27 +38964,27 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3027' is-artificial='yes'/>
+            <parameter type-id='type-id-3028' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_istringstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='263' column='1' id='type-id-2999'>
+      <class-decl name='basic_istringstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='263' column='1' id='type-id-3000'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-802'/>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='277' column='1' id='type-id-3002'/>
+          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='277' column='1' id='type-id-3003'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__stringbuf_type' type-id='type-id-2167' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='278' column='1' id='type-id-3031'/>
+          <typedef-decl name='__stringbuf_type' type-id='type-id-2168' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='278' column='1' id='type-id-3032'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_stringbuf' type-id='type-id-3031' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='282' column='1'/>
+          <var-decl name='_M_stringbuf' type-id='type-id-3032' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='282' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_istringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -38987,17 +38993,17 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3004'/>
+            <parameter type-id='type-id-3005'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39006,7 +39012,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39015,46 +39021,46 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3004'/>
+            <parameter type-id='type-id-3005'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3004'/>
+            <parameter type-id='type-id-3005'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='339' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3001' is-artificial='yes'/>
-            <return type-id='type-id-3032'/>
+            <parameter type-id='type-id-3002' is-artificial='yes'/>
+            <return type-id='type-id-3033'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='347' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3001' is-artificial='yes'/>
-            <return type-id='type-id-3002'/>
+            <parameter type-id='type-id-3002' is-artificial='yes'/>
+            <return type-id='type-id-3003'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='357' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
-            <parameter type-id='type-id-3004'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
+            <parameter type-id='type-id-3005'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39062,7 +39068,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39070,7 +39076,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39078,27 +39084,27 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_istringstream' mangled-name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3030' is-artificial='yes'/>
+            <parameter type-id='type-id-3031' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_stringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='2944' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='483' column='1' id='type-id-3015'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1299'/>
+      <class-decl name='basic_stringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='2944' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='483' column='1' id='type-id-3016'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1300'/>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='497' column='1' id='type-id-3018'/>
+          <typedef-decl name='__string_type' type-id='type-id-360' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='497' column='1' id='type-id-3019'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__stringbuf_type' type-id='type-id-2164' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='498' column='1' id='type-id-3034'/>
+          <typedef-decl name='__stringbuf_type' type-id='type-id-2165' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='498' column='1' id='type-id-3035'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_stringbuf' type-id='type-id-3034' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='502' column='1'/>
+          <var-decl name='_M_stringbuf' type-id='type-id-3035' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='502' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_stringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39107,17 +39113,17 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='534' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3020'/>
+            <parameter type-id='type-id-3021'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39126,7 +39132,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39135,46 +39141,46 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3020'/>
+            <parameter type-id='type-id-3021'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3020'/>
+            <parameter type-id='type-id-3021'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3017' is-artificial='yes'/>
-            <return type-id='type-id-3035'/>
+            <parameter type-id='type-id-3018' is-artificial='yes'/>
+            <return type-id='type-id-3036'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3017' is-artificial='yes'/>
-            <return type-id='type-id-3018'/>
+            <parameter type-id='type-id-3018' is-artificial='yes'/>
+            <return type-id='type-id-3019'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strERKSs' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
-            <parameter type-id='type-id-3020'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
+            <parameter type-id='type-id-3021'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39182,7 +39188,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39190,7 +39196,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39198,27 +39204,27 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3033' is-artificial='yes'/>
+            <parameter type-id='type-id-3034' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='basic_stringstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='2944' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='483' column='1' id='type-id-3021'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1300'/>
+      <class-decl name='basic_stringstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' size-in-bits='2944' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='483' column='1' id='type-id-3022'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1301'/>
         <member-type access='private'>
-          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='497' column='1' id='type-id-3024'/>
+          <typedef-decl name='__string_type' type-id='type-id-361' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='497' column='1' id='type-id-3025'/>
         </member-type>
         <member-type access='private'>
-          <typedef-decl name='__stringbuf_type' type-id='type-id-2167' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='498' column='1' id='type-id-3037'/>
+          <typedef-decl name='__stringbuf_type' type-id='type-id-2168' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='498' column='1' id='type-id-3038'/>
         </member-type>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_stringbuf' type-id='type-id-3037' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='502' column='1'/>
+          <var-decl name='_M_stringbuf' type-id='type-id-3038' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='502' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='basic_stringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39227,17 +39233,17 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='534' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3026'/>
+            <parameter type-id='type-id-3027'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39246,7 +39252,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-958'/>
@@ -39255,46 +39261,46 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3026'/>
+            <parameter type-id='type-id-3027'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
-            <parameter type-id='type-id-3026'/>
+            <parameter type-id='type-id-3027'/>
             <parameter type-id='type-id-958'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3023' is-artificial='yes'/>
-            <return type-id='type-id-3038'/>
+            <parameter type-id='type-id-3024' is-artificial='yes'/>
+            <return type-id='type-id-3039'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='str' mangled-name='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3023' is-artificial='yes'/>
-            <return type-id='type-id-3024'/>
+            <parameter type-id='type-id-3024' is-artificial='yes'/>
+            <return type-id='type-id-3025'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
-            <parameter type-id='type-id-3026'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
+            <parameter type-id='type-id-3027'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39302,7 +39308,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39310,7 +39316,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39318,7 +39324,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_stringstream' mangled-name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/sstream' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3036' is-artificial='yes'/>
+            <parameter type-id='type-id-3037' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -39326,382 +39332,382 @@ 
         </member-function>
       </class-decl>
       <function-decl name='max&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1955'/>
-        <parameter type-id='type-id-1955'/>
-        <return type-id='type-id-1955'/>
+        <parameter type-id='type-id-1956'/>
+        <parameter type-id='type-id-1956'/>
+        <return type-id='type-id-1956'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1520' const='yes' id='type-id-3039'/>
-    <pointer-type-def type-id='type-id-3039' size-in-bits='64' id='type-id-3040'/>
-    <qualified-type-def type-id='type-id-1522' const='yes' id='type-id-3041'/>
-    <pointer-type-def type-id='type-id-3041' size-in-bits='64' id='type-id-3042'/>
-    <pointer-type-def type-id='type-id-3043' size-in-bits='64' id='type-id-3044'/>
-    <pointer-type-def type-id='type-id-3045' size-in-bits='64' id='type-id-3046'/>
-    <pointer-type-def type-id='type-id-3047' size-in-bits='64' id='type-id-3048'/>
-    <pointer-type-def type-id='type-id-1520' size-in-bits='64' id='type-id-3049'/>
-    <pointer-type-def type-id='type-id-3050' size-in-bits='64' id='type-id-3051'/>
-    <pointer-type-def type-id='type-id-3052' size-in-bits='64' id='type-id-3053'/>
-    <pointer-type-def type-id='type-id-3054' size-in-bits='64' id='type-id-3055'/>
-    <pointer-type-def type-id='type-id-1522' size-in-bits='64' id='type-id-3056'/>
-    <pointer-type-def type-id='type-id-3057' size-in-bits='64' id='type-id-3058'/>
+    <qualified-type-def type-id='type-id-1521' const='yes' id='type-id-3040'/>
+    <pointer-type-def type-id='type-id-3040' size-in-bits='64' id='type-id-3041'/>
+    <qualified-type-def type-id='type-id-1523' const='yes' id='type-id-3042'/>
+    <pointer-type-def type-id='type-id-3042' size-in-bits='64' id='type-id-3043'/>
+    <pointer-type-def type-id='type-id-3044' size-in-bits='64' id='type-id-3045'/>
+    <pointer-type-def type-id='type-id-3046' size-in-bits='64' id='type-id-3047'/>
+    <pointer-type-def type-id='type-id-3048' size-in-bits='64' id='type-id-3049'/>
+    <pointer-type-def type-id='type-id-1521' size-in-bits='64' id='type-id-3050'/>
+    <pointer-type-def type-id='type-id-3051' size-in-bits='64' id='type-id-3052'/>
+    <pointer-type-def type-id='type-id-3053' size-in-bits='64' id='type-id-3054'/>
+    <pointer-type-def type-id='type-id-3055' size-in-bits='64' id='type-id-3056'/>
+    <pointer-type-def type-id='type-id-1523' size-in-bits='64' id='type-id-3057'/>
+    <pointer-type-def type-id='type-id-3058' size-in-bits='64' id='type-id-3059'/>
     <namespace-decl name='std'>
-      <class-decl name='logic_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='56' column='1' id='type-id-1520'>
+      <class-decl name='logic_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='56' column='1' id='type-id-1521'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-11'/>
         <data-member access='private' layout-offset-in-bits='64'>
           <var-decl name='_M_msg' type-id='type-id-322' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='58' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='logic_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3049' is-artificial='yes'/>
+            <parameter type-id='type-id-3050' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='logic_error' mangled-name='_ZNSt11logic_errorC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11logic_errorC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3049' is-artificial='yes'/>
+            <parameter type-id='type-id-3050' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~logic_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3049' is-artificial='yes'/>
+            <parameter type-id='type-id-3050' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~logic_error' mangled-name='_ZNSt11logic_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11logic_errorD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3049' is-artificial='yes'/>
+            <parameter type-id='type-id-3050' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~logic_error' mangled-name='_ZNSt11logic_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11logic_errorD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3049' is-artificial='yes'/>
+            <parameter type-id='type-id-3050' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes' vtable-offset='2'>
           <function-decl name='what' mangled-name='_ZNKSt11logic_error4whatEv' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='43' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11logic_error4whatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3040' is-artificial='yes'/>
+            <parameter type-id='type-id-3041' is-artificial='yes'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='domain_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='75' column='1' id='type-id-3043'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1520'/>
+      <class-decl name='domain_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='75' column='1' id='type-id-3044'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1521'/>
         <member-function access='private' constructor='yes'>
           <function-decl name='domain_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3044' is-artificial='yes'/>
+            <parameter type-id='type-id-3045' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='domain_error' mangled-name='_ZNSt12domain_errorC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='46' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12domain_errorC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3044' is-artificial='yes'/>
+            <parameter type-id='type-id-3045' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~domain_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3044' is-artificial='yes'/>
+            <parameter type-id='type-id-3045' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~domain_error' mangled-name='_ZNSt12domain_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='49' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12domain_errorD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3044' is-artificial='yes'/>
+            <parameter type-id='type-id-3045' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~domain_error' mangled-name='_ZNSt12domain_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='49' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12domain_errorD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-3044' is-artificial='yes'/>
+            <parameter type-id='type-id-3045' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='invalid_argument' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='83' column='1' id='type-id-3045'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1520'/>
+      <class-decl name='invalid_argument' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='83' column='1' id='type-id-3046'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1521'/>
         <member-function access='private' constructor='yes'>
           <function-decl name='invalid_argument' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3046' is-artificial='yes'/>
+            <parameter type-id='type-id-3047' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='invalid_argument' mangled-name='_ZNSt16invalid_argumentC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16invalid_argumentC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3046' is-artificial='yes'/>
+            <parameter type-id='type-id-3047' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~invalid_argument' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3046' is-artificial='yes'/>
+            <parameter type-id='type-id-3047' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~invalid_argument' mangled-name='_ZNSt16invalid_argumentD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='54' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16invalid_argumentD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3046' is-artificial='yes'/>
+            <parameter type-id='type-id-3047' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~invalid_argument' mangled-name='_ZNSt16invalid_argumentD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='54' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt16invalid_argumentD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-3046' is-artificial='yes'/>
+            <parameter type-id='type-id-3047' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='length_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='92' column='1' id='type-id-3047'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1520'/>
+      <class-decl name='length_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='92' column='1' id='type-id-3048'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1521'/>
         <member-function access='private' constructor='yes'>
           <function-decl name='length_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3048' is-artificial='yes'/>
+            <parameter type-id='type-id-3049' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='length_error' mangled-name='_ZNSt12length_errorC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12length_errorC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3048' is-artificial='yes'/>
+            <parameter type-id='type-id-3049' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~length_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3048' is-artificial='yes'/>
+            <parameter type-id='type-id-3049' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~length_error' mangled-name='_ZNSt12length_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='59' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12length_errorD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3048' is-artificial='yes'/>
+            <parameter type-id='type-id-3049' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~length_error' mangled-name='_ZNSt12length_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='59' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12length_errorD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-3048' is-artificial='yes'/>
+            <parameter type-id='type-id-3049' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='out_of_range' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='101' column='1' id='type-id-3050'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1520'/>
+      <class-decl name='out_of_range' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='101' column='1' id='type-id-3051'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1521'/>
         <member-function access='private' constructor='yes'>
           <function-decl name='out_of_range' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3051' is-artificial='yes'/>
+            <parameter type-id='type-id-3052' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='out_of_range' mangled-name='_ZNSt12out_of_rangeC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12out_of_rangeC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3051' is-artificial='yes'/>
+            <parameter type-id='type-id-3052' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~out_of_range' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3051' is-artificial='yes'/>
+            <parameter type-id='type-id-3052' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~out_of_range' mangled-name='_ZNSt12out_of_rangeD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12out_of_rangeD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3051' is-artificial='yes'/>
+            <parameter type-id='type-id-3052' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~out_of_range' mangled-name='_ZNSt12out_of_rangeD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12out_of_rangeD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-3051' is-artificial='yes'/>
+            <parameter type-id='type-id-3052' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='runtime_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='113' column='1' id='type-id-1522'>
+      <class-decl name='runtime_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='113' column='1' id='type-id-1523'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-11'/>
         <data-member access='private' layout-offset-in-bits='64'>
           <var-decl name='_M_msg' type-id='type-id-322' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='115' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='runtime_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3056' is-artificial='yes'/>
+            <parameter type-id='type-id-3057' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='runtime_error' mangled-name='_ZNSt13runtime_errorC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='66' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13runtime_errorC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3056' is-artificial='yes'/>
+            <parameter type-id='type-id-3057' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~runtime_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3056' is-artificial='yes'/>
+            <parameter type-id='type-id-3057' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~runtime_error' mangled-name='_ZNSt13runtime_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13runtime_errorD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3056' is-artificial='yes'/>
+            <parameter type-id='type-id-3057' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~runtime_error' mangled-name='_ZNSt13runtime_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt13runtime_errorD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3056' is-artificial='yes'/>
+            <parameter type-id='type-id-3057' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes' vtable-offset='2'>
           <function-decl name='what' mangled-name='_ZNKSt13runtime_error4whatEv' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt13runtime_error4whatEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3042' is-artificial='yes'/>
+            <parameter type-id='type-id-3043' is-artificial='yes'/>
             <return type-id='type-id-4'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='range_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='131' column='1' id='type-id-3054'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1522'/>
+      <class-decl name='range_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='131' column='1' id='type-id-3055'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1523'/>
         <member-function access='private' constructor='yes'>
           <function-decl name='range_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3055' is-artificial='yes'/>
+            <parameter type-id='type-id-3056' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='range_error' mangled-name='_ZNSt11range_errorC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11range_errorC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3055' is-artificial='yes'/>
+            <parameter type-id='type-id-3056' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~range_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3055' is-artificial='yes'/>
+            <parameter type-id='type-id-3056' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~range_error' mangled-name='_ZNSt11range_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11range_errorD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3055' is-artificial='yes'/>
+            <parameter type-id='type-id-3056' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~range_error' mangled-name='_ZNSt11range_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11range_errorD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-3055' is-artificial='yes'/>
+            <parameter type-id='type-id-3056' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='overflow_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='139' column='1' id='type-id-3052'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1522'/>
+      <class-decl name='overflow_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='139' column='1' id='type-id-3053'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1523'/>
         <member-function access='private' constructor='yes'>
           <function-decl name='overflow_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3053' is-artificial='yes'/>
+            <parameter type-id='type-id-3054' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='overflow_error' mangled-name='_ZNSt14overflow_errorC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14overflow_errorC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3053' is-artificial='yes'/>
+            <parameter type-id='type-id-3054' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~overflow_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3053' is-artificial='yes'/>
+            <parameter type-id='type-id-3054' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~overflow_error' mangled-name='_ZNSt14overflow_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14overflow_errorD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3053' is-artificial='yes'/>
+            <parameter type-id='type-id-3054' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~overflow_error' mangled-name='_ZNSt14overflow_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14overflow_errorD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-3053' is-artificial='yes'/>
+            <parameter type-id='type-id-3054' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='underflow_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='147' column='1' id='type-id-3057'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1522'/>
+      <class-decl name='underflow_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='147' column='1' id='type-id-3058'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1523'/>
         <member-function access='private' constructor='yes'>
           <function-decl name='underflow_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3058' is-artificial='yes'/>
+            <parameter type-id='type-id-3059' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='underflow_error' mangled-name='_ZNSt15underflow_errorC2ERKSs' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15underflow_errorC2ERKSs@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3058' is-artificial='yes'/>
+            <parameter type-id='type-id-3059' is-artificial='yes'/>
             <parameter type-id='type-id-324'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~underflow_error' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3058' is-artificial='yes'/>
+            <parameter type-id='type-id-3059' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~underflow_error' mangled-name='_ZNSt15underflow_errorD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15underflow_errorD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3058' is-artificial='yes'/>
+            <parameter type-id='type-id-3059' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~underflow_error' mangled-name='_ZNSt15underflow_errorD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15underflow_errorD2Ev@@GLIBCXX_3.4.15'>
-            <parameter type-id='type-id-3058' is-artificial='yes'/>
+            <parameter type-id='type-id-3059' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -39710,65 +39716,65 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/streambuf-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1086' const='yes' id='type-id-3059'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3059' size-in-bits='64' id='type-id-1088'/>
-    <qualified-type-def type-id='type-id-1083' const='yes' id='type-id-3060'/>
-    <qualified-type-def type-id='type-id-1094' const='yes' id='type-id-3061'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3061' size-in-bits='64' id='type-id-1096'/>
-    <qualified-type-def type-id='type-id-1091' const='yes' id='type-id-3062'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1086' size-in-bits='64' id='type-id-1090'/>
-    <pointer-type-def type-id='type-id-1086' size-in-bits='64' id='type-id-1089'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1094' size-in-bits='64' id='type-id-1098'/>
-    <pointer-type-def type-id='type-id-1094' size-in-bits='64' id='type-id-1097'/>
+    <qualified-type-def type-id='type-id-1087' const='yes' id='type-id-3060'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3060' size-in-bits='64' id='type-id-1089'/>
+    <qualified-type-def type-id='type-id-1084' const='yes' id='type-id-3061'/>
+    <qualified-type-def type-id='type-id-1095' const='yes' id='type-id-3062'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3062' size-in-bits='64' id='type-id-1097'/>
+    <qualified-type-def type-id='type-id-1092' const='yes' id='type-id-3063'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1087' size-in-bits='64' id='type-id-1091'/>
+    <pointer-type-def type-id='type-id-1087' size-in-bits='64' id='type-id-1090'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1095' size-in-bits='64' id='type-id-1099'/>
+    <pointer-type-def type-id='type-id-1095' size-in-bits='64' id='type-id-1098'/>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/streambuf.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <reference-type-def kind='lvalue' type-id='type-id-40' size-in-bits='64' id='type-id-1062'/>
-    <qualified-type-def type-id='type-id-809' const='yes' id='type-id-3063'/>
-    <pointer-type-def type-id='type-id-3063' size-in-bits='64' id='type-id-1087'/>
-    <qualified-type-def type-id='type-id-812' const='yes' id='type-id-3064'/>
-    <pointer-type-def type-id='type-id-3064' size-in-bits='64' id='type-id-1095'/>
+    <reference-type-def kind='lvalue' type-id='type-id-40' size-in-bits='64' id='type-id-1063'/>
+    <qualified-type-def type-id='type-id-809' const='yes' id='type-id-3064'/>
+    <pointer-type-def type-id='type-id-3064' size-in-bits='64' id='type-id-1088'/>
+    <qualified-type-def type-id='type-id-812' const='yes' id='type-id-3065'/>
+    <pointer-type-def type-id='type-id-3065' size-in-bits='64' id='type-id-1096'/>
     <namespace-decl name='std'>
       <function-decl name='__copy_streambufs_eof&lt;char, std::char_traits&lt;char&gt; &gt;' mangled-name='_ZSt21__copy_streambufs_eofIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_Rb' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='38' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt21__copy_streambufs_eofIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_Rb@@GLIBCXX_3.4.9'>
         <parameter type-id='type-id-808' name='__sbin' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='38' column='1'/>
         <parameter type-id='type-id-808' name='__sbout' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='39' column='1'/>
-        <parameter type-id='type-id-1062' name='__ineof' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='39' column='1'/>
+        <parameter type-id='type-id-1063' name='__ineof' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='39' column='1'/>
         <return type-id='type-id-897'/>
       </function-decl>
       <function-decl name='__copy_streambufs_eof&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' mangled-name='_ZSt21__copy_streambufs_eofIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_Rb' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt21__copy_streambufs_eofIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_Rb@@GLIBCXX_3.4.9'>
         <parameter type-id='type-id-811' name='__sbin' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='78' column='1'/>
         <parameter type-id='type-id-811' name='__sbout' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='79' column='1'/>
-        <parameter type-id='type-id-1062' name='__ineof' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='79' column='1'/>
+        <parameter type-id='type-id-1063' name='__ineof' filepath='../../../.././libstdc++-v3/src/c++98/streambuf.cc' line='79' column='1'/>
         <return type-id='type-id-897'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/strstream.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-624' const='yes' id='type-id-3065'/>
-    <pointer-type-def type-id='type-id-3065' size-in-bits='64' id='type-id-2944'/>
-    <qualified-type-def type-id='type-id-2603' const='yes' id='type-id-3066'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3066' size-in-bits='64' id='type-id-1305'/>
-    <pointer-type-def type-id='type-id-3066' size-in-bits='64' id='type-id-3067'/>
-    <qualified-type-def type-id='type-id-3068' const='yes' id='type-id-3069'/>
-    <pointer-type-def type-id='type-id-3069' size-in-bits='64' id='type-id-3070'/>
-    <qualified-type-def type-id='type-id-3071' const='yes' id='type-id-3072'/>
-    <pointer-type-def type-id='type-id-3072' size-in-bits='64' id='type-id-3073'/>
-    <qualified-type-def type-id='type-id-3074' const='yes' id='type-id-3075'/>
-    <pointer-type-def type-id='type-id-3075' size-in-bits='64' id='type-id-3076'/>
-    <qualified-type-def type-id='type-id-3077' const='yes' id='type-id-3078'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3078' size-in-bits='64' id='type-id-3079'/>
-    <pointer-type-def type-id='type-id-3078' size-in-bits='64' id='type-id-3080'/>
-    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-2614'/>
-    <pointer-type-def type-id='type-id-1299' size-in-bits='64' id='type-id-3081'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2603' size-in-bits='64' id='type-id-3082'/>
-    <pointer-type-def type-id='type-id-2603' size-in-bits='64' id='type-id-3083'/>
-    <pointer-type-def type-id='type-id-3068' size-in-bits='64' id='type-id-3084'/>
-    <pointer-type-def type-id='type-id-3071' size-in-bits='64' id='type-id-3085'/>
-    <pointer-type-def type-id='type-id-3074' size-in-bits='64' id='type-id-3086'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3077' size-in-bits='64' id='type-id-3087'/>
-    <pointer-type-def type-id='type-id-3077' size-in-bits='64' id='type-id-3088'/>
-    <pointer-type-def type-id='type-id-81' size-in-bits='64' id='type-id-2613'/>
+    <qualified-type-def type-id='type-id-624' const='yes' id='type-id-3066'/>
+    <pointer-type-def type-id='type-id-3066' size-in-bits='64' id='type-id-2945'/>
+    <qualified-type-def type-id='type-id-2604' const='yes' id='type-id-3067'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3067' size-in-bits='64' id='type-id-1306'/>
+    <pointer-type-def type-id='type-id-3067' size-in-bits='64' id='type-id-3068'/>
+    <qualified-type-def type-id='type-id-3069' const='yes' id='type-id-3070'/>
+    <pointer-type-def type-id='type-id-3070' size-in-bits='64' id='type-id-3071'/>
+    <qualified-type-def type-id='type-id-3072' const='yes' id='type-id-3073'/>
+    <pointer-type-def type-id='type-id-3073' size-in-bits='64' id='type-id-3074'/>
+    <qualified-type-def type-id='type-id-3075' const='yes' id='type-id-3076'/>
+    <pointer-type-def type-id='type-id-3076' size-in-bits='64' id='type-id-3077'/>
+    <qualified-type-def type-id='type-id-3078' const='yes' id='type-id-3079'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3079' size-in-bits='64' id='type-id-3080'/>
+    <pointer-type-def type-id='type-id-3079' size-in-bits='64' id='type-id-3081'/>
+    <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-2615'/>
+    <pointer-type-def type-id='type-id-1300' size-in-bits='64' id='type-id-3082'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2604' size-in-bits='64' id='type-id-3083'/>
+    <pointer-type-def type-id='type-id-2604' size-in-bits='64' id='type-id-3084'/>
+    <pointer-type-def type-id='type-id-3069' size-in-bits='64' id='type-id-3085'/>
+    <pointer-type-def type-id='type-id-3072' size-in-bits='64' id='type-id-3086'/>
+    <pointer-type-def type-id='type-id-3075' size-in-bits='64' id='type-id-3087'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3078' size-in-bits='64' id='type-id-3088'/>
+    <pointer-type-def type-id='type-id-3078' size-in-bits='64' id='type-id-3089'/>
+    <pointer-type-def type-id='type-id-81' size-in-bits='64' id='type-id-2614'/>
     <namespace-decl name='std'>
-      <class-decl name='strstreambuf' size-in-bits='704' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='65' column='1' id='type-id-3077'>
+      <class-decl name='strstreambuf' size-in-bits='704' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='65' column='1' id='type-id-3078'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-728'/>
         <data-member access='private' layout-offset-in-bits='512'>
           <var-decl name='_M_alloc_fun' type-id='type-id-172' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='118' column='1'/>
@@ -39787,14 +39793,14 @@ 
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-172'/>
             <parameter type-id='type-id-88'/>
             <return type-id='type-id-5'/>
@@ -39802,7 +39808,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-897'/>
             <parameter type-id='type-id-94'/>
@@ -39811,25 +39817,25 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-2614'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-2615'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-2614'/>
+            <parameter type-id='type-id-2615'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-2613'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-2614'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-2613'/>
+            <parameter type-id='type-id-2614'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
@@ -39837,15 +39843,15 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-2944'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-2945'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-83'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
@@ -39853,47 +39859,47 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-3079'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-3080'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_free' mangled-name='_ZNSt12strstreambuf7_M_freeEPc' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf7_M_freeEPc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='freeze' mangled-name='_ZNSt12strstreambuf6freezeEb' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf6freezeEb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt12strstreambuf3strEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='pcount' mangled-name='_ZNKSt12strstreambuf6pcountEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt12strstreambuf6pcountEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3080' is-artificial='yes'/>
+            <parameter type-id='type-id-3081' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_alloc' mangled-name='_ZNSt12strstreambuf8_M_allocEm' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf8_M_allocEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2EPFPvmEPFvS0_E' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2EPFPvmEPFvS0_E@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-172'/>
             <parameter type-id='type-id-88'/>
             <return type-id='type-id-5'/>
@@ -39901,14 +39907,14 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2El' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2El@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='_M_setup' mangled-name='_ZNSt12strstreambuf8_M_setupEPcS0_l' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf8_M_setupEPcS0_l@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-897'/>
@@ -39917,7 +39923,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2EPKhl' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2EPKhl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-83'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
@@ -39925,15 +39931,15 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2EPKal' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2EPKal@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-2944'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-2945'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2EPKcl' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2EPKcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-5'/>
@@ -39941,25 +39947,25 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2EPhlS0_' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='94' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2EPhlS0_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-2613'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-2614'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-2613'/>
+            <parameter type-id='type-id-2614'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2EPalS0_' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2EPalS0_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-2614'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-2615'/>
             <parameter type-id='type-id-897'/>
-            <parameter type-id='type-id-2614'/>
+            <parameter type-id='type-id-2615'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstreambuf' mangled-name='_ZNSt12strstreambufC2EPclS0_' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='84' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufC2EPclS0_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-897'/>
             <parameter type-id='type-id-94'/>
@@ -39968,28 +39974,28 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~strstreambuf' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~strstreambuf' mangled-name='_ZNSt12strstreambufD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~strstreambuf' mangled-name='_ZNSt12strstreambufD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambufD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='3'>
           <function-decl name='setbuf' mangled-name='_ZNSt12strstreambuf6setbufEPcl' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf6setbufEPcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-808'/>
@@ -39997,50 +40003,50 @@ 
         </member-function>
         <member-function access='protected' vtable-offset='4'>
           <function-decl name='seekoff' mangled-name='_ZNSt12strstreambuf7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='227' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-1085'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-1086'/>
             <parameter type-id='type-id-964'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1084'/>
+            <return type-id='type-id-1085'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='5'>
           <function-decl name='seekpos' mangled-name='_ZNSt12strstreambuf7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='296' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-1084'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-1085'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-1084'/>
+            <return type-id='type-id-1085'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='9'>
           <function-decl name='underflow' mangled-name='_ZNSt12strstreambuf9underflowEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf9underflowEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <return type-id='type-id-1083'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='11'>
           <function-decl name='pbackfail' mangled-name='_ZNSt12strstreambuf9pbackfailEi' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf9pbackfailEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-1083'/>
-            <return type-id='type-id-1083'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-1084'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
         <member-function access='protected' vtable-offset='13'>
           <function-decl name='overflow' mangled-name='_ZNSt12strstreambuf8overflowEi' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12strstreambuf8overflowEi@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3088' is-artificial='yes'/>
-            <parameter type-id='type-id-1083'/>
-            <return type-id='type-id-1083'/>
+            <parameter type-id='type-id-3089' is-artificial='yes'/>
+            <parameter type-id='type-id-1084'/>
+            <return type-id='type-id-1084'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='istrstream' size-in-bits='2944' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='127' column='1' id='type-id-3068'>
+      <class-decl name='istrstream' size-in-bits='2944' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='127' column='1' id='type-id-3069'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-796'/>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_buf' type-id='type-id-3077' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='140' column='1'/>
+          <var-decl name='_M_buf' type-id='type-id-3078' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='140' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40049,7 +40055,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='341' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -40058,7 +40064,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='345' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40068,7 +40074,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='349' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -40078,7 +40084,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC2EPc' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC2EPc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40087,7 +40093,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC1EPc' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC1EPc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40096,7 +40102,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC2EPKc' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC2EPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -40105,7 +40111,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC1EPKc' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC1EPKc@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -40114,7 +40120,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC2EPcl' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC2EPcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40124,7 +40130,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC1EPcl' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC1EPcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40134,7 +40140,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC2EPKcl' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC2EPKcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -40144,7 +40150,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='istrstream' mangled-name='_ZNSt10istrstreamC1EPKcl' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamC1EPKcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
@@ -40154,19 +40160,19 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt10istrstream5rdbufEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='356' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10istrstream5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3070' is-artificial='yes'/>
-            <return type-id='type-id-3088'/>
+            <parameter type-id='type-id-3071' is-artificial='yes'/>
+            <return type-id='type-id-3089'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt10istrstream3strEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstream3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~istrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40174,7 +40180,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~istrstream' mangled-name='_ZNSt10istrstreamD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='353' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40182,7 +40188,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~istrstream' mangled-name='_ZNSt10istrstreamD1Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='353' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamD1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40190,21 +40196,21 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~istrstream' mangled-name='_ZNSt10istrstreamD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='353' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10istrstreamD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3084' is-artificial='yes'/>
+            <parameter type-id='type-id-3085' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='ostrstream' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='144' column='1' id='type-id-3071'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1297'/>
+      <class-decl name='ostrstream' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='144' column='1' id='type-id-3072'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1298'/>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_buf' type-id='type-id-3077' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='157' column='1'/>
+          <var-decl name='_M_buf' type-id='type-id-3078' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='157' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='ostrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='363' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40212,7 +40218,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='ostrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='367' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40223,7 +40229,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='ostrstream' mangled-name='_ZNSt10ostrstreamC2Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstreamC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40231,7 +40237,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='ostrstream' mangled-name='_ZNSt10ostrstreamC1Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstreamC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40239,7 +40245,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='ostrstream' mangled-name='_ZNSt10ostrstreamC2EPciSt13_Ios_Openmode' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='367' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstreamC2EPciSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40250,7 +40256,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='ostrstream' mangled-name='_ZNSt10ostrstreamC1EPciSt13_Ios_Openmode' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='367' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstreamC1EPciSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40261,32 +40267,32 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt10ostrstream5rdbufEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10ostrstream5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3073' is-artificial='yes'/>
-            <return type-id='type-id-3088'/>
+            <parameter type-id='type-id-3074' is-artificial='yes'/>
+            <return type-id='type-id-3089'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='freeze' mangled-name='_ZNSt10ostrstream6freezeEb' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='379' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstream6freezeEb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt10ostrstream3strEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='383' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstream3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='pcount' mangled-name='_ZNKSt10ostrstream6pcountEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='387' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt10ostrstream6pcountEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3073' is-artificial='yes'/>
+            <parameter type-id='type-id-3074' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ostrstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40294,7 +40300,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ostrstream' mangled-name='_ZNSt10ostrstreamD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstreamD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40302,7 +40308,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ostrstream' mangled-name='_ZNSt10ostrstreamD1Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstreamD1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40310,21 +40316,21 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ostrstream' mangled-name='_ZNSt10ostrstreamD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt10ostrstreamD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3085' is-artificial='yes'/>
+            <parameter type-id='type-id-3086' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='strstream' size-in-bits='3008' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='161' column='1' id='type-id-3074'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1299'/>
+      <class-decl name='strstream' size-in-bits='3008' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='161' column='1' id='type-id-3075'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1300'/>
         <data-member access='private' layout-offset-in-bits='192'>
-          <var-decl name='_M_buf' type-id='type-id-3077' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='179' column='1'/>
+          <var-decl name='_M_buf' type-id='type-id-3078' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/backward/strstream' line='179' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='390' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40332,7 +40338,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='394' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40343,7 +40349,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstream' mangled-name='_ZNSt9strstreamC2Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstreamC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40351,7 +40357,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstream' mangled-name='_ZNSt9strstreamC1Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstreamC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40359,7 +40365,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstream' mangled-name='_ZNSt9strstreamC2EPciSt13_Ios_Openmode' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstreamC2EPciSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40370,7 +40376,7 @@ 
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='strstream' mangled-name='_ZNSt9strstreamC1EPciSt13_Ios_Openmode' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='394' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstreamC1EPciSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
@@ -40381,32 +40387,32 @@ 
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='rdbuf' mangled-name='_ZNKSt9strstream5rdbufEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='402' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9strstream5rdbufEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3076' is-artificial='yes'/>
-            <return type-id='type-id-3088'/>
+            <parameter type-id='type-id-3077' is-artificial='yes'/>
+            <return type-id='type-id-3089'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='freeze' mangled-name='_ZNSt9strstream6freezeEb' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='406' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstream6freezeEb@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-40'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='pcount' mangled-name='_ZNKSt9strstream6pcountEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='410' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt9strstream6pcountEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3076' is-artificial='yes'/>
+            <parameter type-id='type-id-3077' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='str' mangled-name='_ZNSt9strstream3strEv' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='414' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstream3strEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <return type-id='type-id-94'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~strstream' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='399' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40414,7 +40420,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~strstream' mangled-name='_ZNSt9strstreamD0Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstreamD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40422,7 +40428,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~strstream' mangled-name='_ZNSt9strstreamD1Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstreamD1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40430,7 +40436,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~strstream' mangled-name='_ZNSt9strstreamD2Ev' filepath='../../../.././libstdc++-v3/src/c++98/strstream.cc' line='399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt9strstreamD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3086' is-artificial='yes'/>
+            <parameter type-id='type-id-3087' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40438,7 +40444,7 @@ 
         </member-function>
       </class-decl>
       <typedef-decl name='streamoff' type-id='type-id-20' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='90' column='1' id='type-id-888'/>
-      <class-decl name='fpos&lt;__mbstate_t&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='114' column='1' id='type-id-2603'>
+      <class-decl name='fpos&lt;__mbstate_t&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='114' column='1' id='type-id-2604'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_off' type-id='type-id-888' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='117' column='1'/>
         </data-member>
@@ -40447,56 +40453,56 @@ 
         </data-member>
         <member-function access='private'>
           <function-decl name='fpos' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3083' is-artificial='yes'/>
+            <parameter type-id='type-id-3084' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='fpos' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3083' is-artificial='yes'/>
+            <parameter type-id='type-id-3084' is-artificial='yes'/>
             <parameter type-id='type-id-888'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator-' mangled-name='_ZNKSt4fposI11__mbstate_tEmiERKS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3067' is-artificial='yes'/>
-            <parameter type-id='type-id-1305'/>
+            <parameter type-id='type-id-3068' is-artificial='yes'/>
+            <parameter type-id='type-id-1306'/>
             <return type-id='type-id-888'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator std::streamoff' mangled-name='_ZNKSt4fposI11__mbstate_tEcvlEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3067' is-artificial='yes'/>
+            <parameter type-id='type-id-3068' is-artificial='yes'/>
             <return type-id='type-id-888'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='state' mangled-name='_ZNSt4fposI11__mbstate_tE5stateES0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3083' is-artificial='yes'/>
+            <parameter type-id='type-id-3084' is-artificial='yes'/>
             <parameter type-id='type-id-633'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='state' mangled-name='_ZNKSt4fposI11__mbstate_tE5stateEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3067' is-artificial='yes'/>
+            <parameter type-id='type-id-3068' is-artificial='yes'/>
             <return type-id='type-id-633'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <typedef-decl name='streampos' type-id='type-id-2603' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='230' column='1' id='type-id-886'/>
+      <typedef-decl name='streampos' type-id='type-id-2604' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/postypes.h' line='230' column='1' id='type-id-886'/>
       <function-decl name='max&lt;long int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-675'/>
         <parameter type-id='type-id-675'/>
         <return type-id='type-id-675'/>
       </function-decl>
-      <class-decl name='basic_iostream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='789' column='1' is-declaration-only='yes' id='type-id-1299'>
+      <class-decl name='basic_iostream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='789' column='1' is-declaration-only='yes' id='type-id-1300'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-796'/>
-        <base-class access='public' layout-offset-in-bits='128' type-id='type-id-1297'/>
+        <base-class access='public' layout-offset-in-bits='128' type-id='type-id-1298'/>
         <member-function access='private'>
           <function-decl name='basic_iostream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='814' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-808'/>
@@ -40505,7 +40511,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='basic_iostream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='824' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40513,7 +40519,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_iostream' mangled-name='_ZNSdC2EPSt15basic_streambufIcSt11char_traitsIcEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSdC2EPSt15basic_streambufIcSt11char_traitsIcEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-808'/>
@@ -40522,7 +40528,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='basic_iostream' mangled-name='_ZNSdC1EPSt15basic_streambufIcSt11char_traitsIcEE' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='814' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSdC1EPSt15basic_streambufIcSt11char_traitsIcEE@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <parameter type-id='type-id-808'/>
@@ -40531,7 +40537,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='basic_iostream' mangled-name='_ZNSdC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSdC2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40539,7 +40545,7 @@ 
         </member-function>
         <member-function access='protected'>
           <function-decl name='basic_iostream' mangled-name='_ZNSdC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='824' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSdC1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40547,7 +40553,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40555,7 +40561,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' mangled-name='_ZNSdD0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSdD0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40563,7 +40569,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' mangled-name='_ZNSdD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSdD1Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40571,7 +40577,7 @@ 
         </member-function>
         <member-function access='private' destructor='yes' vtable-offset='-1'>
           <function-decl name='~basic_iostream' mangled-name='_ZNSdD2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/istream' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSdD2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3081' is-artificial='yes'/>
+            <parameter type-id='type-id-3082' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <parameter type-id='type-id-35' is-artificial='yes'/>
             <return type-id='type-id-5'/>
@@ -40581,170 +40587,170 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/tree.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-1481' const='yes' id='type-id-3089'/>
-    <pointer-type-def type-id='type-id-3089' size-in-bits='64' id='type-id-1495'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3090' size-in-bits='64' id='type-id-3091'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1481' size-in-bits='64' id='type-id-3092'/>
-    <pointer-type-def type-id='type-id-1481' size-in-bits='64' id='type-id-1493'/>
-    <qualified-type-def type-id='type-id-1493' const='yes' id='type-id-3093'/>
-    <reference-type-def kind='lvalue' type-id='type-id-1493' size-in-bits='64' id='type-id-3094'/>
+    <qualified-type-def type-id='type-id-1482' const='yes' id='type-id-3090'/>
+    <pointer-type-def type-id='type-id-3090' size-in-bits='64' id='type-id-1496'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3091' size-in-bits='64' id='type-id-3092'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1482' size-in-bits='64' id='type-id-3093'/>
+    <pointer-type-def type-id='type-id-1482' size-in-bits='64' id='type-id-1494'/>
+    <qualified-type-def type-id='type-id-1494' const='yes' id='type-id-3094'/>
+    <reference-type-def kind='lvalue' type-id='type-id-1494' size-in-bits='64' id='type-id-3095'/>
     <namespace-decl name='std'>
-      <enum-decl name='_Rb_tree_color' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='88' column='1' id='type-id-3090'>
+      <enum-decl name='_Rb_tree_color' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='88' column='1' id='type-id-3091'>
         <underlying-type type-id='type-id-37'/>
         <enumerator name='_S_red' value='0'/>
         <enumerator name='_S_black' value='1'/>
       </enum-decl>
-      <class-decl name='_Rb_tree_node_base' size-in-bits='256' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='90' column='1' id='type-id-1481'>
+      <class-decl name='_Rb_tree_node_base' size-in-bits='256' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='90' column='1' id='type-id-1482'>
         <member-type access='public'>
-          <typedef-decl name='_Base_ptr' type-id='type-id-1493' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='92' column='1' id='type-id-1485'/>
+          <typedef-decl name='_Base_ptr' type-id='type-id-1494' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='92' column='1' id='type-id-1486'/>
         </member-type>
         <member-type access='public'>
-          <typedef-decl name='_Const_Base_ptr' type-id='type-id-1495' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='93' column='1' id='type-id-1491'/>
+          <typedef-decl name='_Const_Base_ptr' type-id='type-id-1496' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='93' column='1' id='type-id-1492'/>
         </member-type>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_color' type-id='type-id-3090' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='95' column='1'/>
+          <var-decl name='_M_color' type-id='type-id-3091' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='95' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='64'>
-          <var-decl name='_M_parent' type-id='type-id-1485' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='96' column='1'/>
+          <var-decl name='_M_parent' type-id='type-id-1486' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='96' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='128'>
-          <var-decl name='_M_left' type-id='type-id-1485' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='97' column='1'/>
+          <var-decl name='_M_left' type-id='type-id-1486' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='97' column='1'/>
         </data-member>
         <data-member access='public' layout-offset-in-bits='192'>
-          <var-decl name='_M_right' type-id='type-id-1485' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='98' column='1'/>
+          <var-decl name='_M_right' type-id='type-id-1486' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='98' column='1'/>
         </data-member>
         <member-function access='public' static='yes'>
           <function-decl name='_S_minimum' mangled-name='_ZNSt18_Rb_tree_node_base10_S_minimumEPS_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1485'/>
-            <return type-id='type-id-1485'/>
+            <parameter type-id='type-id-1486'/>
+            <return type-id='type-id-1486'/>
           </function-decl>
         </member-function>
         <member-function access='public' static='yes'>
           <function-decl name='_S_maximum' mangled-name='_ZNSt18_Rb_tree_node_base10_S_maximumEPS_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_tree.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1485'/>
-            <return type-id='type-id-1485'/>
+            <parameter type-id='type-id-1486'/>
+            <return type-id='type-id-1486'/>
           </function-decl>
         </member-function>
       </class-decl>
       <function-decl name='_Rb_tree_increment' mangled-name='_ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-1493'/>
-        <return type-id='type-id-1493'/>
+        <parameter type-id='type-id-1494'/>
+        <return type-id='type-id-1494'/>
       </function-decl>
       <function-decl name='_Rb_tree_increment' mangled-name='_ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-1495'/>
-        <return type-id='type-id-1495'/>
+        <parameter type-id='type-id-1496'/>
+        <return type-id='type-id-1496'/>
       </function-decl>
       <function-decl name='_Rb_tree_decrement' mangled-name='_ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-1493'/>
-        <return type-id='type-id-1493'/>
+        <parameter type-id='type-id-1494'/>
+        <return type-id='type-id-1494'/>
       </function-decl>
       <function-decl name='_Rb_tree_decrement' mangled-name='_ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='127' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-1495'/>
-        <return type-id='type-id-1495'/>
+        <parameter type-id='type-id-1496'/>
+        <return type-id='type-id-1496'/>
       </function-decl>
       <function-decl name='_Rb_tree_rotate_left' mangled-name='_ZSt20_Rb_tree_rotate_leftPSt18_Rb_tree_node_baseRS0_' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt20_Rb_tree_rotate_leftPSt18_Rb_tree_node_baseRS0_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-3093' name='__x' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='157' column='1'/>
-        <parameter type-id='type-id-3094' name='__root' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='158' column='1'/>
+        <parameter type-id='type-id-3094' name='__x' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='157' column='1'/>
+        <parameter type-id='type-id-3095' name='__root' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='158' column='1'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='_Rb_tree_rotate_right' mangled-name='_ZSt21_Rb_tree_rotate_rightPSt18_Rb_tree_node_baseRS0_' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt21_Rb_tree_rotate_rightPSt18_Rb_tree_node_baseRS0_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-3093' name='__x' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='157' column='1'/>
-        <parameter type-id='type-id-3094' name='__root' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='158' column='1'/>
+        <parameter type-id='type-id-3094' name='__x' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='157' column='1'/>
+        <parameter type-id='type-id-3095' name='__root' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='158' column='1'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='_Rb_tree_insert_and_rebalance' mangled-name='_ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_@@GLIBCXX_3.4'>
         <parameter type-id='type-id-249' name='__insert_left' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='195' column='1'/>
-        <parameter type-id='type-id-1493' name='__x' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='196' column='1'/>
-        <parameter type-id='type-id-1493' name='__p' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='197' column='1'/>
-        <parameter type-id='type-id-3092' name='__header' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='198' column='1'/>
+        <parameter type-id='type-id-1494' name='__x' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='196' column='1'/>
+        <parameter type-id='type-id-1494' name='__p' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='197' column='1'/>
+        <parameter type-id='type-id-3093' name='__header' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='198' column='1'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='_Rb_tree_rebalance_for_erase' mangled-name='_ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='286' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-3093' name='__z' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='286' column='1'/>
-        <parameter type-id='type-id-3092' name='__header' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='287' column='1'/>
-        <return type-id='type-id-1493'/>
+        <parameter type-id='type-id-3094' name='__z' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='286' column='1'/>
+        <parameter type-id='type-id-3093' name='__header' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='287' column='1'/>
+        <return type-id='type-id-1494'/>
       </function-decl>
       <function-decl name='_Rb_tree_black_count' mangled-name='_ZSt20_Rb_tree_black_countPKSt18_Rb_tree_node_baseS1_' filepath='../../../.././libstdc++-v3/src/c++98/tree.cc' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt20_Rb_tree_black_countPKSt18_Rb_tree_node_baseS1_@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-1495'/>
-        <parameter type-id='type-id-1495'/>
+        <parameter type-id='type-id-1496'/>
+        <parameter type-id='type-id-1496'/>
         <return type-id='type-id-39'/>
       </function-decl>
       <function-decl name='swap&lt;std::_Rb_tree_color&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-3091'/>
-        <parameter type-id='type-id-3091'/>
+        <parameter type-id='type-id-3092'/>
+        <parameter type-id='type-id-3092'/>
         <return type-id='type-id-5'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/valarray.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-3095' size-in-bits='64' id='type-id-3096'/>
-    <pointer-type-def type-id='type-id-3097' size-in-bits='64' id='type-id-3098'/>
-    <pointer-type-def type-id='type-id-40' size-in-bits='64' id='type-id-3099'/>
-    <qualified-type-def type-id='type-id-3099' const='yes' id='type-id-3100'/>
-    <reference-type-def kind='lvalue' type-id='type-id-249' size-in-bits='64' id='type-id-3101'/>
-    <pointer-type-def type-id='type-id-249' size-in-bits='64' id='type-id-3102'/>
-    <qualified-type-def type-id='type-id-3103' const='yes' id='type-id-3104'/>
-    <pointer-type-def type-id='type-id-3104' size-in-bits='64' id='type-id-3105'/>
-    <qualified-type-def type-id='type-id-3106' const='yes' id='type-id-3107'/>
-    <pointer-type-def type-id='type-id-3107' size-in-bits='64' id='type-id-3108'/>
-    <qualified-type-def type-id='type-id-3109' const='yes' id='type-id-3110'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3110' size-in-bits='64' id='type-id-3111'/>
-    <pointer-type-def type-id='type-id-3110' size-in-bits='64' id='type-id-3112'/>
-    <qualified-type-def type-id='type-id-3113' const='yes' id='type-id-3114'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3114' size-in-bits='64' id='type-id-3115'/>
-    <qualified-type-def type-id='type-id-3116' const='yes' id='type-id-3117'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3117' size-in-bits='64' id='type-id-3118'/>
-    <pointer-type-def type-id='type-id-3117' size-in-bits='64' id='type-id-3119'/>
-    <qualified-type-def type-id='type-id-3120' const='yes' id='type-id-3121'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3121' size-in-bits='64' id='type-id-3122'/>
-    <qualified-type-def type-id='type-id-3123' const='yes' id='type-id-3124'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3124' size-in-bits='64' id='type-id-3125'/>
-    <pointer-type-def type-id='type-id-3124' size-in-bits='64' id='type-id-3126'/>
-    <qualified-type-def type-id='type-id-3127' const='yes' id='type-id-3128'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3128' size-in-bits='64' id='type-id-3129'/>
-    <qualified-type-def type-id='type-id-3130' const='yes' id='type-id-3131'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3131' size-in-bits='64' id='type-id-3132'/>
-    <pointer-type-def type-id='type-id-3131' size-in-bits='64' id='type-id-3133'/>
-    <qualified-type-def type-id='type-id-3134' const='yes' id='type-id-3135'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3135' size-in-bits='64' id='type-id-3136'/>
-    <pointer-type-def type-id='type-id-3135' size-in-bits='64' id='type-id-3137'/>
-    <qualified-type-def type-id='type-id-3138' const='yes' id='type-id-3139'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3139' size-in-bits='64' id='type-id-3140'/>
-    <qualified-type-def type-id='type-id-3141' const='yes' id='type-id-3142'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3142' size-in-bits='64' id='type-id-3143'/>
-    <pointer-type-def type-id='type-id-3142' size-in-bits='64' id='type-id-3144'/>
-    <qualified-type-def type-id='type-id-3145' const='yes' id='type-id-3146'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3146' size-in-bits='64' id='type-id-3147'/>
-    <pointer-type-def type-id='type-id-3146' size-in-bits='64' id='type-id-3148'/>
-    <qualified-type-def type-id='type-id-3149' const='yes' id='type-id-3150'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3150' size-in-bits='64' id='type-id-3151'/>
-    <pointer-type-def type-id='type-id-3150' size-in-bits='64' id='type-id-3152'/>
-    <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-3153'/>
-    <pointer-type-def type-id='type-id-3103' size-in-bits='64' id='type-id-3154'/>
-    <pointer-type-def type-id='type-id-3106' size-in-bits='64' id='type-id-3155'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3109' size-in-bits='64' id='type-id-3156'/>
-    <pointer-type-def type-id='type-id-3109' size-in-bits='64' id='type-id-3157'/>
-    <pointer-type-def type-id='type-id-3158' size-in-bits='64' id='type-id-3159'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3116' size-in-bits='64' id='type-id-3160'/>
-    <pointer-type-def type-id='type-id-3116' size-in-bits='64' id='type-id-3161'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3123' size-in-bits='64' id='type-id-3162'/>
-    <pointer-type-def type-id='type-id-3123' size-in-bits='64' id='type-id-3163'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3130' size-in-bits='64' id='type-id-3164'/>
-    <pointer-type-def type-id='type-id-3130' size-in-bits='64' id='type-id-3165'/>
-    <pointer-type-def type-id='type-id-3134' size-in-bits='64' id='type-id-3166'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3141' size-in-bits='64' id='type-id-3167'/>
-    <pointer-type-def type-id='type-id-3141' size-in-bits='64' id='type-id-3168'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3145' size-in-bits='64' id='type-id-3169'/>
-    <pointer-type-def type-id='type-id-3145' size-in-bits='64' id='type-id-3170'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3149' size-in-bits='64' id='type-id-3171'/>
-    <pointer-type-def type-id='type-id-3149' size-in-bits='64' id='type-id-3172'/>
-    <pointer-type-def type-id='type-id-3173' size-in-bits='64' id='type-id-3174'/>
-    <pointer-type-def type-id='type-id-3175' size-in-bits='64' id='type-id-3176'/>
-    <reference-type-def kind='lvalue' type-id='type-id-44' size-in-bits='64' id='type-id-1061'/>
+    <pointer-type-def type-id='type-id-3096' size-in-bits='64' id='type-id-3097'/>
+    <pointer-type-def type-id='type-id-3098' size-in-bits='64' id='type-id-3099'/>
+    <pointer-type-def type-id='type-id-40' size-in-bits='64' id='type-id-3100'/>
+    <qualified-type-def type-id='type-id-3100' const='yes' id='type-id-3101'/>
+    <reference-type-def kind='lvalue' type-id='type-id-249' size-in-bits='64' id='type-id-3102'/>
+    <pointer-type-def type-id='type-id-249' size-in-bits='64' id='type-id-3103'/>
+    <qualified-type-def type-id='type-id-3104' const='yes' id='type-id-3105'/>
+    <pointer-type-def type-id='type-id-3105' size-in-bits='64' id='type-id-3106'/>
+    <qualified-type-def type-id='type-id-3107' const='yes' id='type-id-3108'/>
+    <pointer-type-def type-id='type-id-3108' size-in-bits='64' id='type-id-3109'/>
+    <qualified-type-def type-id='type-id-3110' const='yes' id='type-id-3111'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3111' size-in-bits='64' id='type-id-3112'/>
+    <pointer-type-def type-id='type-id-3111' size-in-bits='64' id='type-id-3113'/>
+    <qualified-type-def type-id='type-id-3114' const='yes' id='type-id-3115'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3115' size-in-bits='64' id='type-id-3116'/>
+    <qualified-type-def type-id='type-id-3117' const='yes' id='type-id-3118'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3118' size-in-bits='64' id='type-id-3119'/>
+    <pointer-type-def type-id='type-id-3118' size-in-bits='64' id='type-id-3120'/>
+    <qualified-type-def type-id='type-id-3121' const='yes' id='type-id-3122'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3122' size-in-bits='64' id='type-id-3123'/>
+    <qualified-type-def type-id='type-id-3124' const='yes' id='type-id-3125'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3125' size-in-bits='64' id='type-id-3126'/>
+    <pointer-type-def type-id='type-id-3125' size-in-bits='64' id='type-id-3127'/>
+    <qualified-type-def type-id='type-id-3128' const='yes' id='type-id-3129'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3129' size-in-bits='64' id='type-id-3130'/>
+    <qualified-type-def type-id='type-id-3131' const='yes' id='type-id-3132'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3132' size-in-bits='64' id='type-id-3133'/>
+    <pointer-type-def type-id='type-id-3132' size-in-bits='64' id='type-id-3134'/>
+    <qualified-type-def type-id='type-id-3135' const='yes' id='type-id-3136'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3136' size-in-bits='64' id='type-id-3137'/>
+    <pointer-type-def type-id='type-id-3136' size-in-bits='64' id='type-id-3138'/>
+    <qualified-type-def type-id='type-id-3139' const='yes' id='type-id-3140'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3140' size-in-bits='64' id='type-id-3141'/>
+    <qualified-type-def type-id='type-id-3142' const='yes' id='type-id-3143'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3143' size-in-bits='64' id='type-id-3144'/>
+    <pointer-type-def type-id='type-id-3143' size-in-bits='64' id='type-id-3145'/>
+    <qualified-type-def type-id='type-id-3146' const='yes' id='type-id-3147'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3147' size-in-bits='64' id='type-id-3148'/>
+    <pointer-type-def type-id='type-id-3147' size-in-bits='64' id='type-id-3149'/>
+    <qualified-type-def type-id='type-id-3150' const='yes' id='type-id-3151'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3151' size-in-bits='64' id='type-id-3152'/>
+    <pointer-type-def type-id='type-id-3151' size-in-bits='64' id='type-id-3153'/>
+    <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-3154'/>
+    <pointer-type-def type-id='type-id-3104' size-in-bits='64' id='type-id-3155'/>
+    <pointer-type-def type-id='type-id-3107' size-in-bits='64' id='type-id-3156'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3110' size-in-bits='64' id='type-id-3157'/>
+    <pointer-type-def type-id='type-id-3110' size-in-bits='64' id='type-id-3158'/>
+    <pointer-type-def type-id='type-id-3159' size-in-bits='64' id='type-id-3160'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3117' size-in-bits='64' id='type-id-3161'/>
+    <pointer-type-def type-id='type-id-3117' size-in-bits='64' id='type-id-3162'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3124' size-in-bits='64' id='type-id-3163'/>
+    <pointer-type-def type-id='type-id-3124' size-in-bits='64' id='type-id-3164'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3131' size-in-bits='64' id='type-id-3165'/>
+    <pointer-type-def type-id='type-id-3131' size-in-bits='64' id='type-id-3166'/>
+    <pointer-type-def type-id='type-id-3135' size-in-bits='64' id='type-id-3167'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3142' size-in-bits='64' id='type-id-3168'/>
+    <pointer-type-def type-id='type-id-3142' size-in-bits='64' id='type-id-3169'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3146' size-in-bits='64' id='type-id-3170'/>
+    <pointer-type-def type-id='type-id-3146' size-in-bits='64' id='type-id-3171'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3150' size-in-bits='64' id='type-id-3172'/>
+    <pointer-type-def type-id='type-id-3150' size-in-bits='64' id='type-id-3173'/>
+    <pointer-type-def type-id='type-id-3174' size-in-bits='64' id='type-id-3175'/>
+    <pointer-type-def type-id='type-id-3176' size-in-bits='64' id='type-id-3177'/>
+    <reference-type-def kind='lvalue' type-id='type-id-44' size-in-bits='64' id='type-id-1062'/>
     <namespace-decl name='std'>
-      <class-decl name='gslice' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='65' column='1' id='type-id-3109'>
+      <class-decl name='gslice' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='65' column='1' id='type-id-3110'>
         <member-type access='private'>
-          <class-decl name='_Indexer' size-in-bits='512' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='107' column='1' id='type-id-3158'>
+          <class-decl name='_Indexer' size-in-bits='512' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='107' column='1' id='type-id-3159'>
             <data-member access='public' layout-offset-in-bits='0'>
               <var-decl name='_M_count' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='109' column='1'/>
             </data-member>
@@ -40752,169 +40758,169 @@ 
               <var-decl name='_M_start' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='110' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='128'>
-              <var-decl name='_M_size' type-id='type-id-3149' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='111' column='1'/>
+              <var-decl name='_M_size' type-id='type-id-3150' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='111' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='256'>
-              <var-decl name='_M_stride' type-id='type-id-3149' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='112' column='1'/>
+              <var-decl name='_M_stride' type-id='type-id-3150' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='112' column='1'/>
             </data-member>
             <data-member access='public' layout-offset-in-bits='384'>
-              <var-decl name='_M_index' type-id='type-id-3149' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='113' column='1'/>
+              <var-decl name='_M_index' type-id='type-id-3150' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='113' column='1'/>
             </data-member>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Indexer' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-3159' is-artificial='yes'/>
+                <parameter type-id='type-id-3160' is-artificial='yes'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Indexer' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
-                <parameter type-id='type-id-3159' is-artificial='yes'/>
+                <parameter type-id='type-id-3160' is-artificial='yes'/>
                 <parameter type-id='type-id-91'/>
-                <parameter type-id='type-id-3151'/>
-                <parameter type-id='type-id-3151'/>
+                <parameter type-id='type-id-3152'/>
+                <parameter type-id='type-id-3152'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
             <member-function access='public' constructor='yes'>
               <function-decl name='_Indexer' mangled-name='_ZNSt6gslice8_IndexerC2EmRKSt8valarrayImES4_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6gslice8_IndexerC2EmRKSt8valarrayImES4_@@GLIBCXX_3.4'>
-                <parameter type-id='type-id-3159' is-artificial='yes'/>
+                <parameter type-id='type-id-3160' is-artificial='yes'/>
                 <parameter type-id='type-id-91'/>
-                <parameter type-id='type-id-3151'/>
-                <parameter type-id='type-id-3151'/>
+                <parameter type-id='type-id-3152'/>
+                <parameter type-id='type-id-3152'/>
                 <return type-id='type-id-5'/>
               </function-decl>
             </member-function>
           </class-decl>
         </member-type>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_index' type-id='type-id-3159' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='130' column='1'/>
+          <var-decl name='_M_index' type-id='type-id-3160' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='130' column='1'/>
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='gslice' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3157' is-artificial='yes'/>
+            <parameter type-id='type-id-3158' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='gslice' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3157' is-artificial='yes'/>
+            <parameter type-id='type-id-3158' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-3151'/>
-            <parameter type-id='type-id-3151'/>
+            <parameter type-id='type-id-3152'/>
+            <parameter type-id='type-id-3152'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='gslice' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3157' is-artificial='yes'/>
-            <parameter type-id='type-id-3111'/>
+            <parameter type-id='type-id-3158' is-artificial='yes'/>
+            <parameter type-id='type-id-3112'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~gslice' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3157' is-artificial='yes'/>
+            <parameter type-id='type-id-3158' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='gslice_array&lt;long unsigned int&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='61' column='1' id='type-id-3116'>
+      <class-decl name='gslice_array&lt;long unsigned int&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='61' column='1' id='type-id-3117'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_array' type-id='type-id-3106' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='125' column='1'/>
+          <var-decl name='_M_array' type-id='type-id-3107' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='125' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_index' type-id='type-id-3151' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='126' column='1'/>
+          <var-decl name='_M_index' type-id='type-id-3152' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='126' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='gslice_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3161' is-artificial='yes'/>
-            <parameter type-id='type-id-3118'/>
+            <parameter type-id='type-id-3162' is-artificial='yes'/>
+            <parameter type-id='type-id-3119'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='gslice_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3161' is-artificial='yes'/>
-            <parameter type-id='type-id-3106'/>
-            <parameter type-id='type-id-3151'/>
+            <parameter type-id='type-id-3162' is-artificial='yes'/>
+            <parameter type-id='type-id-3107'/>
+            <parameter type-id='type-id-3152'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='gslice_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/gslice_array.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3161' is-artificial='yes'/>
+            <parameter type-id='type-id-3162' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='indirect_array&lt;long unsigned int&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='63' column='1' id='type-id-3123'>
+      <class-decl name='indirect_array&lt;long unsigned int&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='63' column='1' id='type-id-3124'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sz' type-id='type-id-1516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='134' column='1'/>
+          <var-decl name='_M_sz' type-id='type-id-1517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='134' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_index' type-id='type-id-3107' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='135' column='1'/>
+          <var-decl name='_M_index' type-id='type-id-3108' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='135' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_array' type-id='type-id-3107' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='136' column='1'/>
+          <var-decl name='_M_array' type-id='type-id-3108' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='136' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='indirect_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3163' is-artificial='yes'/>
-            <parameter type-id='type-id-3125'/>
+            <parameter type-id='type-id-3164' is-artificial='yes'/>
+            <parameter type-id='type-id-3126'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='indirect_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3163' is-artificial='yes'/>
-            <parameter type-id='type-id-3106'/>
+            <parameter type-id='type-id-3164' is-artificial='yes'/>
+            <parameter type-id='type-id-3107'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-3106'/>
+            <parameter type-id='type-id-3107'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='indirect_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/indirect_array.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3163' is-artificial='yes'/>
+            <parameter type-id='type-id-3164' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='mask_array&lt;long unsigned int&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='63' column='1' id='type-id-3130'>
+      <class-decl name='mask_array&lt;long unsigned int&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='63' column='1' id='type-id-3131'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sz' type-id='type-id-1516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='131' column='1'/>
+          <var-decl name='_M_sz' type-id='type-id-1517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='131' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_mask' type-id='type-id-3104' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='132' column='1'/>
+          <var-decl name='_M_mask' type-id='type-id-3105' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='132' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_array' type-id='type-id-3107' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='133' column='1'/>
+          <var-decl name='_M_array' type-id='type-id-3108' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='133' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='mask_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3165' is-artificial='yes'/>
-            <parameter type-id='type-id-3132'/>
+            <parameter type-id='type-id-3166' is-artificial='yes'/>
+            <parameter type-id='type-id-3133'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='mask_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3165' is-artificial='yes'/>
-            <parameter type-id='type-id-3106'/>
+            <parameter type-id='type-id-3166' is-artificial='yes'/>
+            <parameter type-id='type-id-3107'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-3103'/>
+            <parameter type-id='type-id-3104'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='mask_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/mask_array.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3165' is-artificial='yes'/>
+            <parameter type-id='type-id-3166' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='slice' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='60' column='1' id='type-id-3134'>
+      <class-decl name='slice' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='60' column='1' id='type-id-3135'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_off' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='83' column='1'/>
         </data-member>
@@ -40926,13 +40932,13 @@ 
         </data-member>
         <member-function access='private' constructor='yes'>
           <function-decl name='slice' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3166' is-artificial='yes'/>
+            <parameter type-id='type-id-3167' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' constructor='yes'>
           <function-decl name='slice' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3166' is-artificial='yes'/>
+            <parameter type-id='type-id-3167' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-91'/>
             <parameter type-id='type-id-91'/>
@@ -40940,161 +40946,161 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='slice_array&lt;long unsigned int&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='124' column='1' id='type-id-3141'>
+      <class-decl name='slice_array&lt;long unsigned int&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='124' column='1' id='type-id-3142'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_sz' type-id='type-id-1516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='192' column='1'/>
+          <var-decl name='_M_sz' type-id='type-id-1517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='192' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_stride' type-id='type-id-1516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='193' column='1'/>
+          <var-decl name='_M_stride' type-id='type-id-1517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='193' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='128'>
-          <var-decl name='_M_array' type-id='type-id-3107' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='194' column='1'/>
+          <var-decl name='_M_array' type-id='type-id-3108' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='194' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='slice_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='208' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3168' is-artificial='yes'/>
-            <parameter type-id='type-id-3143'/>
+            <parameter type-id='type-id-3169' is-artificial='yes'/>
+            <parameter type-id='type-id-3144'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='slice_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3168' is-artificial='yes'/>
-            <parameter type-id='type-id-3106'/>
-            <parameter type-id='type-id-3136'/>
+            <parameter type-id='type-id-3169' is-artificial='yes'/>
+            <parameter type-id='type-id-3107'/>
+            <parameter type-id='type-id-3137'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='slice_array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/slice_array.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3168' is-artificial='yes'/>
+            <parameter type-id='type-id-3169' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Array_default_ctor&lt;long unsigned int, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='86' column='1' id='type-id-3177'>
+      <class-decl name='_Array_default_ctor&lt;long unsigned int, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='86' column='1' id='type-id-3178'>
         <member-function access='public' static='yes'>
           <function-decl name='_S_do_it' mangled-name='_ZNSt19_Array_default_ctorImLb1EE8_S_do_itEPmS1_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-1961'/>
-            <parameter type-id='type-id-1961'/>
+            <parameter type-id='type-id-1962'/>
+            <parameter type-id='type-id-1962'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Array_copy_ctor&lt;long unsigned int, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='153' column='1' id='type-id-3178'>
+      <class-decl name='_Array_copy_ctor&lt;long unsigned int, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='153' column='1' id='type-id-3179'>
         <member-function access='public' static='yes'>
           <function-decl name='_S_do_it' mangled-name='_ZNSt16_Array_copy_ctorImLb1EE8_S_do_itEPKmS2_Pm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3153'/>
-            <parameter type-id='type-id-3153'/>
-            <parameter type-id='type-id-1961'/>
+            <parameter type-id='type-id-3154'/>
+            <parameter type-id='type-id-3154'/>
+            <parameter type-id='type-id-1962'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Array_copier&lt;long unsigned int, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='259' column='1' id='type-id-3179'>
+      <class-decl name='_Array_copier&lt;long unsigned int, true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='259' column='1' id='type-id-3180'>
         <member-function access='public' static='yes'>
           <function-decl name='_S_do_it' mangled-name='_ZNSt13_Array_copierImLb1EE8_S_do_itEPKmmPm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3153'/>
+            <parameter type-id='type-id-3154'/>
             <parameter type-id='type-id-91'/>
-            <parameter type-id='type-id-1961'/>
+            <parameter type-id='type-id-1962'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Array&lt;bool&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='407' column='1' id='type-id-3103'>
+      <class-decl name='_Array&lt;bool&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='407' column='1' id='type-id-3104'>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_data' type-id='type-id-3100' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='416' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-3101' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='416' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='504' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3154' is-artificial='yes'/>
+            <parameter type-id='type-id-3155' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='510' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3154' is-artificial='yes'/>
-            <parameter type-id='type-id-3099'/>
+            <parameter type-id='type-id-3155' is-artificial='yes'/>
+            <parameter type-id='type-id-3100'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3154' is-artificial='yes'/>
-            <parameter type-id='type-id-3147'/>
+            <parameter type-id='type-id-3155' is-artificial='yes'/>
+            <parameter type-id='type-id-3148'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='520' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3154' is-artificial='yes'/>
-            <parameter type-id='type-id-3102'/>
+            <parameter type-id='type-id-3155' is-artificial='yes'/>
+            <parameter type-id='type-id-3103'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Array&lt;long unsigned int&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='407' column='1' id='type-id-3106'>
+      <class-decl name='_Array&lt;long unsigned int&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='407' column='1' id='type-id-3107'>
         <data-member access='public' layout-offset-in-bits='0'>
-          <var-decl name='_M_data' type-id='type-id-1962' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='416' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-1963' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='416' column='1'/>
         </data-member>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3155' is-artificial='yes'/>
+            <parameter type-id='type-id-3156' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='410' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3155' is-artificial='yes'/>
-            <parameter type-id='type-id-1961'/>
+            <parameter type-id='type-id-3156' is-artificial='yes'/>
+            <parameter type-id='type-id-1962'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='411' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3155' is-artificial='yes'/>
-            <parameter type-id='type-id-3151'/>
+            <parameter type-id='type-id-3156' is-artificial='yes'/>
+            <parameter type-id='type-id-3152'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='public'>
           <function-decl name='_Array' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='412' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3155' is-artificial='yes'/>
-            <parameter type-id='type-id-3153'/>
+            <parameter type-id='type-id-3156' is-artificial='yes'/>
+            <parameter type-id='type-id-3154'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='valarray&lt;bool&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='118' column='1' id='type-id-3145'>
+      <class-decl name='valarray&lt;bool&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='118' column='1' id='type-id-3146'>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__bitwise_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3180'>
+          <class-decl name='_UnaryOp&lt;std::__bitwise_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3181'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3182' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3181'/>
+              <typedef-decl name='_Rt' type-id='type-id-3183' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3182'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__logical_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3183'>
+          <class-decl name='_UnaryOp&lt;std::__logical_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3184'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3185' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3184'/>
+              <typedef-decl name='_Rt' type-id='type-id-3186' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3185'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__negate&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3186'>
+          <class-decl name='_UnaryOp&lt;std::__negate&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3187'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3188' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3187'/>
+              <typedef-decl name='_Rt' type-id='type-id-3189' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3188'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__unary_plus&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3189'>
+          <class-decl name='_UnaryOp&lt;std::__unary_plus&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3190'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3191' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3190'/>
+              <typedef-decl name='_Rt' type-id='type-id-3192' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3191'/>
             </member-type>
           </class-decl>
         </member-type>
@@ -41102,106 +41108,106 @@ 
           <var-decl name='_M_size' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='562' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_data' type-id='type-id-3099' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='563' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-3100' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='563' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
-            <parameter type-id='type-id-3101'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
+            <parameter type-id='type-id-3102'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
-            <parameter type-id='type-id-3102'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
+            <parameter type-id='type-id-3103'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
-            <parameter type-id='type-id-3147'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
+            <parameter type-id='type-id-3148'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
-            <parameter type-id='type-id-3140'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
+            <parameter type-id='type-id-3141'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
-            <parameter type-id='type-id-3115'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
+            <parameter type-id='type-id-3116'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
-            <parameter type-id='type-id-3129'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
+            <parameter type-id='type-id-3130'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
-            <parameter type-id='type-id-3122'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
+            <parameter type-id='type-id-3123'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3170' is-artificial='yes'/>
+            <parameter type-id='type-id-3171' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='valarray&lt;long unsigned int&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='118' column='1' id='type-id-3149'>
+      <class-decl name='valarray&lt;long unsigned int&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='118' column='1' id='type-id-3150'>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__bitwise_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3192'>
+          <class-decl name='_UnaryOp&lt;std::__bitwise_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3193'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3194' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3193'/>
+              <typedef-decl name='_Rt' type-id='type-id-3195' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3194'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__logical_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3195'>
+          <class-decl name='_UnaryOp&lt;std::__logical_not&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3196'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3197' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3196'/>
+              <typedef-decl name='_Rt' type-id='type-id-3198' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3197'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__negate&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3198'>
+          <class-decl name='_UnaryOp&lt;std::__negate&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3199'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3200' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3199'/>
+              <typedef-decl name='_Rt' type-id='type-id-3201' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3200'/>
             </member-type>
           </class-decl>
         </member-type>
         <member-type access='private'>
-          <class-decl name='_UnaryOp&lt;std::__unary_plus&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3201'>
+          <class-decl name='_UnaryOp&lt;std::__unary_plus&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='121' column='1' id='type-id-3202'>
             <member-type access='public'>
-              <typedef-decl name='_Rt' type-id='type-id-3203' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3202'/>
+              <typedef-decl name='_Rt' type-id='type-id-3204' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='124' column='1' id='type-id-3203'/>
             </member-type>
           </class-decl>
         </member-type>
@@ -41209,145 +41215,145 @@ 
           <var-decl name='_M_size' type-id='type-id-91' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='562' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
-          <var-decl name='_M_data' type-id='type-id-1961' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='563' column='1'/>
+          <var-decl name='_M_data' type-id='type-id-1962' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='563' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-1955'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-1956'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-3153'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-3154'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-3151'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-3152'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-3143'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-3144'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-3118'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-3119'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-3132'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-3133'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-3125'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-3126'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~valarray' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='size' mangled-name='_ZNKSt8valarrayImE4sizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt8valarrayImE4sizeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3152' is-artificial='yes'/>
+            <parameter type-id='type-id-3153' is-artificial='yes'/>
             <return type-id='type-id-91'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='operator[]' mangled-name='_ZNSt8valarrayImEixEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='578' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8valarrayImEixEm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <return type-id='type-id-1061'/>
+            <return type-id='type-id-1062'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='operator[]' mangled-name='_ZNKSt8valarrayImEixEm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='570' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3152' is-artificial='yes'/>
+            <parameter type-id='type-id-3153' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
-            <return type-id='type-id-1955'/>
+            <return type-id='type-id-1956'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~valarray' mangled-name='_ZNSt8valarrayImED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8valarrayImED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' mangled-name='_ZNSt8valarrayImEC2ERKS0_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='143' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8valarrayImEC2ERKS0_@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
-            <parameter type-id='type-id-3151'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
+            <parameter type-id='type-id-3152'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='valarray' mangled-name='_ZNSt8valarrayImEC2Em' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/valarray' line='134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt8valarrayImEC2Em@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3172' is-artificial='yes'/>
+            <parameter type-id='type-id-3173' is-artificial='yes'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='_Expr&lt;std::_GClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3204'/>
-      <class-decl name='_Expr&lt;std::_GClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3205'/>
-      <class-decl name='_Expr&lt;std::_IClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3206'/>
-      <class-decl name='_Expr&lt;std::_IClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3207'/>
-      <class-decl name='_Expr&lt;std::_RefFunClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3208'/>
-      <class-decl name='_Expr&lt;std::_RefFunClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3209'/>
-      <class-decl name='_Expr&lt;std::_SClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3210'/>
-      <class-decl name='_Expr&lt;std::_SClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3211'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__bitwise_not, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3182'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__bitwise_not, std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3194'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__logical_not, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3185'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__logical_not, std::_ValArray, long unsigned int&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3197'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__negate, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3188'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__negate, std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3200'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__unary_plus, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3191'/>
-      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__unary_plus, std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3203'/>
-      <class-decl name='_Expr&lt;std::_ValFunClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3212'/>
-      <class-decl name='_Expr&lt;std::_ValFunClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3213'/>
-      <class-decl name='gslice_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3113'/>
-      <class-decl name='indirect_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3120'/>
-      <class-decl name='mask_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3127'/>
-      <class-decl name='slice_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3138'/>
+      <class-decl name='_Expr&lt;std::_GClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3205'/>
+      <class-decl name='_Expr&lt;std::_GClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3206'/>
+      <class-decl name='_Expr&lt;std::_IClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3207'/>
+      <class-decl name='_Expr&lt;std::_IClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3208'/>
+      <class-decl name='_Expr&lt;std::_RefFunClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3209'/>
+      <class-decl name='_Expr&lt;std::_RefFunClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3210'/>
+      <class-decl name='_Expr&lt;std::_SClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3211'/>
+      <class-decl name='_Expr&lt;std::_SClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3212'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__bitwise_not, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3183'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__bitwise_not, std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3195'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__logical_not, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3186'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__logical_not, std::_ValArray, long unsigned int&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3198'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__negate, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3189'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__negate, std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3201'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__unary_plus, std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3192'/>
+      <class-decl name='_Expr&lt;std::_UnClos&lt;std::__unary_plus, std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3204'/>
+      <class-decl name='_Expr&lt;std::_ValFunClos&lt;std::_ValArray, bool&gt;, bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3213'/>
+      <class-decl name='_Expr&lt;std::_ValFunClos&lt;std::_ValArray, long unsigned int&gt;, long unsigned int&gt;' visibility='default' is-declaration-only='yes' id='type-id-3214'/>
+      <class-decl name='gslice_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3114'/>
+      <class-decl name='indirect_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3121'/>
+      <class-decl name='mask_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3128'/>
+      <class-decl name='slice_array&lt;bool&gt;' visibility='default' is-declaration-only='yes' id='type-id-3139'/>
       <function-decl name='__valarray_product' filepath='../../../.././libstdc++-v3/src/c++98/valarray.cc' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-3151'/>
+        <parameter type-id='type-id-3152'/>
         <return type-id='type-id-91'/>
       </function-decl>
       <function-decl name='__valarray_get_memory' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -41356,144 +41362,144 @@ 
       </function-decl>
       <function-decl name='__valarray_get_storage&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-91'/>
-        <return type-id='type-id-1961'/>
+        <return type-id='type-id-1962'/>
       </function-decl>
       <function-decl name='__valarray_release_memory' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-34'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__valarray_default_construct&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1961'/>
-        <parameter type-id='type-id-1961'/>
+        <parameter type-id='type-id-1962'/>
+        <parameter type-id='type-id-1962'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__valarray_copy_construct&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-3153'/>
-        <parameter type-id='type-id-3153'/>
-        <parameter type-id='type-id-1961'/>
+        <parameter type-id='type-id-3154'/>
+        <parameter type-id='type-id-3154'/>
+        <parameter type-id='type-id-1962'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__valarray_destroy_elements&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-1961'/>
-        <parameter type-id='type-id-1961'/>
+        <parameter type-id='type-id-1962'/>
+        <parameter type-id='type-id-1962'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__valarray_product&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-3153'/>
-        <parameter type-id='type-id-3153'/>
+        <parameter type-id='type-id-3154'/>
+        <parameter type-id='type-id-3154'/>
         <return type-id='type-id-44'/>
       </function-decl>
     </namespace-decl>
-    <function-type size-in-bits='64' id='type-id-3095'>
+    <function-type size-in-bits='64' id='type-id-3096'>
       <parameter type-id='type-id-40'/>
       <return type-id='type-id-40'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-3097'>
-      <parameter type-id='type-id-3101'/>
+    <function-type size-in-bits='64' id='type-id-3098'>
+      <parameter type-id='type-id-3102'/>
       <return type-id='type-id-40'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-3173'>
-      <parameter type-id='type-id-1955'/>
+    <function-type size-in-bits='64' id='type-id-3174'>
+      <parameter type-id='type-id-1956'/>
       <return type-id='type-id-44'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-3175'>
+    <function-type size-in-bits='64' id='type-id-3176'>
       <parameter type-id='type-id-44'/>
       <return type-id='type-id-44'/>
     </function-type>
   </abi-instr>
   <abi-instr address-size='64' path='../../../.././libstdc++-v3/src/c++98/wlocale-inst.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-377' size-in-bits='352' id='type-id-2820'>
-      <subrange length='11' type-id='type-id-176' id='type-id-2624'/>
+    <array-type-def dimensions='1' type-id='type-id-377' size-in-bits='352' id='type-id-2821'>
+      <subrange length='11' type-id='type-id-176' id='type-id-2625'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-377' size-in-bits='832' id='type-id-2790'>
-      <subrange length='26' type-id='type-id-176' id='type-id-2626'/>
+    <array-type-def dimensions='1' type-id='type-id-377' size-in-bits='832' id='type-id-2791'>
+      <subrange length='26' type-id='type-id-176' id='type-id-2627'/>
     </array-type-def>
-    <array-type-def dimensions='1' type-id='type-id-377' size-in-bits='1152' id='type-id-2789'>
-      <subrange length='36' type-id='type-id-176' id='type-id-2628'/>
+    <array-type-def dimensions='1' type-id='type-id-377' size-in-bits='1152' id='type-id-2790'>
+      <subrange length='36' type-id='type-id-176' id='type-id-2629'/>
     </array-type-def>
-    <qualified-type-def type-id='type-id-2053' const='yes' id='type-id-3214'/>
-    <pointer-type-def type-id='type-id-3214' size-in-bits='64' id='type-id-2135'/>
-    <qualified-type-def type-id='type-id-2133' const='yes' id='type-id-3215'/>
-    <pointer-type-def type-id='type-id-3215' size-in-bits='64' id='type-id-2137'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2137' size-in-bits='64' id='type-id-2138'/>
-    <qualified-type-def type-id='type-id-2132' const='yes' id='type-id-3216'/>
-    <pointer-type-def type-id='type-id-3216' size-in-bits='64' id='type-id-2141'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2141' size-in-bits='64' id='type-id-2142'/>
-    <qualified-type-def type-id='type-id-2213' const='yes' id='type-id-3217'/>
-    <pointer-type-def type-id='type-id-3217' size-in-bits='64' id='type-id-2217'/>
-    <qualified-type-def type-id='type-id-2754' const='yes' id='type-id-3218'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3218' size-in-bits='64' id='type-id-2821'/>
-    <pointer-type-def type-id='type-id-3218' size-in-bits='64' id='type-id-3219'/>
-    <qualified-type-def type-id='type-id-2756' const='yes' id='type-id-3220'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3220' size-in-bits='64' id='type-id-2822'/>
-    <pointer-type-def type-id='type-id-3220' size-in-bits='64' id='type-id-3221'/>
-    <qualified-type-def type-id='type-id-2759' const='yes' id='type-id-3222'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3222' size-in-bits='64' id='type-id-2791'/>
-    <pointer-type-def type-id='type-id-3222' size-in-bits='64' id='type-id-3223'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3224' size-in-bits='64' id='type-id-3225'/>
-    <qualified-type-def type-id='type-id-2764' const='yes' id='type-id-3226'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3226' size-in-bits='64' id='type-id-2803'/>
-    <qualified-type-def type-id='type-id-3227' const='yes' id='type-id-3228'/>
-    <pointer-type-def type-id='type-id-3228' size-in-bits='64' id='type-id-3229'/>
-    <qualified-type-def type-id='type-id-3230' const='yes' id='type-id-3231'/>
-    <pointer-type-def type-id='type-id-3231' size-in-bits='64' id='type-id-3232'/>
-    <qualified-type-def type-id='type-id-3233' const='yes' id='type-id-3234'/>
-    <pointer-type-def type-id='type-id-3234' size-in-bits='64' id='type-id-3235'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2035' size-in-bits='64' id='type-id-1304'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3236' size-in-bits='64' id='type-id-3237'/>
-    <qualified-type-def type-id='type-id-2787' const='yes' id='type-id-3238'/>
-    <qualified-type-def type-id='type-id-2607' const='yes' id='type-id-3239'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3240' size-in-bits='64' id='type-id-3241'/>
-    <qualified-type-def type-id='type-id-2768' const='yes' id='type-id-3242'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3242' size-in-bits='64' id='type-id-3243'/>
-    <pointer-type-def type-id='type-id-3242' size-in-bits='64' id='type-id-2837'/>
-    <qualified-type-def type-id='type-id-2834' const='yes' id='type-id-3244'/>
-    <qualified-type-def type-id='type-id-2769' const='yes' id='type-id-3245'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3245' size-in-bits='64' id='type-id-3246'/>
-    <pointer-type-def type-id='type-id-3245' size-in-bits='64' id='type-id-2843'/>
-    <qualified-type-def type-id='type-id-2840' const='yes' id='type-id-3247'/>
-    <qualified-type-def type-id='type-id-2842' const='yes' id='type-id-3248'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3248' size-in-bits='64' id='type-id-2844'/>
-    <qualified-type-def type-id='type-id-2774' const='yes' id='type-id-3249'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3249' size-in-bits='64' id='type-id-3250'/>
-    <pointer-type-def type-id='type-id-3249' size-in-bits='64' id='type-id-2829'/>
-    <qualified-type-def type-id='type-id-2777' const='yes' id='type-id-3251'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3251' size-in-bits='64' id='type-id-3252'/>
-    <pointer-type-def type-id='type-id-3251' size-in-bits='64' id='type-id-2832'/>
-    <qualified-type-def type-id='type-id-2796' const='yes' id='type-id-3253'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2580' size-in-bits='64' id='type-id-3254'/>
-    <qualified-type-def type-id='type-id-2784' const='yes' id='type-id-3255'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3255' size-in-bits='64' id='type-id-3256'/>
-    <pointer-type-def type-id='type-id-3255' size-in-bits='64' id='type-id-2811'/>
-    <qualified-type-def type-id='type-id-2809' const='yes' id='type-id-3257'/>
-    <qualified-type-def type-id='type-id-2785' const='yes' id='type-id-3258'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3258' size-in-bits='64' id='type-id-3259'/>
-    <pointer-type-def type-id='type-id-3258' size-in-bits='64' id='type-id-2816'/>
-    <pointer-type-def type-id='type-id-2133' size-in-bits='64' id='type-id-2143'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2143' size-in-bits='64' id='type-id-2144'/>
-    <pointer-type-def type-id='type-id-2132' size-in-bits='64' id='type-id-2139'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2139' size-in-bits='64' id='type-id-2140'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2134' size-in-bits='64' id='type-id-2136'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2754' size-in-bits='64' id='type-id-3260'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2756' size-in-bits='64' id='type-id-3261'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2759' size-in-bits='64' id='type-id-3262'/>
-    <pointer-type-def type-id='type-id-2805' size-in-bits='64' id='type-id-2806'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2764' size-in-bits='64' id='type-id-3263'/>
-    <pointer-type-def type-id='type-id-3264' size-in-bits='64' id='type-id-3265'/>
-    <pointer-type-def type-id='type-id-3266' size-in-bits='64' id='type-id-3267'/>
-    <pointer-type-def type-id='type-id-3268' size-in-bits='64' id='type-id-3269'/>
-    <reference-type-def kind='lvalue' type-id='type-id-2836' size-in-bits='64' id='type-id-2838'/>
-    <pointer-type-def type-id='type-id-3270' size-in-bits='64' id='type-id-3271'/>
-    <pointer-type-def type-id='type-id-3272' size-in-bits='64' id='type-id-3273'/>
-    <pointer-type-def type-id='type-id-3274' size-in-bits='64' id='type-id-3275'/>
-    <pointer-type-def type-id='type-id-3276' size-in-bits='64' id='type-id-3277'/>
-    <pointer-type-def type-id='type-id-3278' size-in-bits='64' id='type-id-3279'/>
+    <qualified-type-def type-id='type-id-2054' const='yes' id='type-id-3215'/>
+    <pointer-type-def type-id='type-id-3215' size-in-bits='64' id='type-id-2136'/>
+    <qualified-type-def type-id='type-id-2134' const='yes' id='type-id-3216'/>
+    <pointer-type-def type-id='type-id-3216' size-in-bits='64' id='type-id-2138'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2138' size-in-bits='64' id='type-id-2139'/>
+    <qualified-type-def type-id='type-id-2133' const='yes' id='type-id-3217'/>
+    <pointer-type-def type-id='type-id-3217' size-in-bits='64' id='type-id-2142'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2142' size-in-bits='64' id='type-id-2143'/>
+    <qualified-type-def type-id='type-id-2214' const='yes' id='type-id-3218'/>
+    <pointer-type-def type-id='type-id-3218' size-in-bits='64' id='type-id-2218'/>
+    <qualified-type-def type-id='type-id-2755' const='yes' id='type-id-3219'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3219' size-in-bits='64' id='type-id-2822'/>
+    <pointer-type-def type-id='type-id-3219' size-in-bits='64' id='type-id-3220'/>
+    <qualified-type-def type-id='type-id-2757' const='yes' id='type-id-3221'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3221' size-in-bits='64' id='type-id-2823'/>
+    <pointer-type-def type-id='type-id-3221' size-in-bits='64' id='type-id-3222'/>
+    <qualified-type-def type-id='type-id-2760' const='yes' id='type-id-3223'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3223' size-in-bits='64' id='type-id-2792'/>
+    <pointer-type-def type-id='type-id-3223' size-in-bits='64' id='type-id-3224'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3225' size-in-bits='64' id='type-id-3226'/>
+    <qualified-type-def type-id='type-id-2765' const='yes' id='type-id-3227'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3227' size-in-bits='64' id='type-id-2804'/>
+    <qualified-type-def type-id='type-id-3228' const='yes' id='type-id-3229'/>
+    <pointer-type-def type-id='type-id-3229' size-in-bits='64' id='type-id-3230'/>
+    <qualified-type-def type-id='type-id-3231' const='yes' id='type-id-3232'/>
+    <pointer-type-def type-id='type-id-3232' size-in-bits='64' id='type-id-3233'/>
+    <qualified-type-def type-id='type-id-3234' const='yes' id='type-id-3235'/>
+    <pointer-type-def type-id='type-id-3235' size-in-bits='64' id='type-id-3236'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2036' size-in-bits='64' id='type-id-1305'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3237' size-in-bits='64' id='type-id-3238'/>
+    <qualified-type-def type-id='type-id-2788' const='yes' id='type-id-3239'/>
+    <qualified-type-def type-id='type-id-2608' const='yes' id='type-id-3240'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3241' size-in-bits='64' id='type-id-3242'/>
+    <qualified-type-def type-id='type-id-2769' const='yes' id='type-id-3243'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3243' size-in-bits='64' id='type-id-3244'/>
+    <pointer-type-def type-id='type-id-3243' size-in-bits='64' id='type-id-2838'/>
+    <qualified-type-def type-id='type-id-2835' const='yes' id='type-id-3245'/>
+    <qualified-type-def type-id='type-id-2770' const='yes' id='type-id-3246'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3246' size-in-bits='64' id='type-id-3247'/>
+    <pointer-type-def type-id='type-id-3246' size-in-bits='64' id='type-id-2844'/>
+    <qualified-type-def type-id='type-id-2841' const='yes' id='type-id-3248'/>
+    <qualified-type-def type-id='type-id-2843' const='yes' id='type-id-3249'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3249' size-in-bits='64' id='type-id-2845'/>
+    <qualified-type-def type-id='type-id-2775' const='yes' id='type-id-3250'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3250' size-in-bits='64' id='type-id-3251'/>
+    <pointer-type-def type-id='type-id-3250' size-in-bits='64' id='type-id-2830'/>
+    <qualified-type-def type-id='type-id-2778' const='yes' id='type-id-3252'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3252' size-in-bits='64' id='type-id-3253'/>
+    <pointer-type-def type-id='type-id-3252' size-in-bits='64' id='type-id-2833'/>
+    <qualified-type-def type-id='type-id-2797' const='yes' id='type-id-3254'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2581' size-in-bits='64' id='type-id-3255'/>
+    <qualified-type-def type-id='type-id-2785' const='yes' id='type-id-3256'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3256' size-in-bits='64' id='type-id-3257'/>
+    <pointer-type-def type-id='type-id-3256' size-in-bits='64' id='type-id-2812'/>
+    <qualified-type-def type-id='type-id-2810' const='yes' id='type-id-3258'/>
+    <qualified-type-def type-id='type-id-2786' const='yes' id='type-id-3259'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3259' size-in-bits='64' id='type-id-3260'/>
+    <pointer-type-def type-id='type-id-3259' size-in-bits='64' id='type-id-2817'/>
+    <pointer-type-def type-id='type-id-2134' size-in-bits='64' id='type-id-2144'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2144' size-in-bits='64' id='type-id-2145'/>
+    <pointer-type-def type-id='type-id-2133' size-in-bits='64' id='type-id-2140'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2140' size-in-bits='64' id='type-id-2141'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2135' size-in-bits='64' id='type-id-2137'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2755' size-in-bits='64' id='type-id-3261'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2757' size-in-bits='64' id='type-id-3262'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2760' size-in-bits='64' id='type-id-3263'/>
+    <pointer-type-def type-id='type-id-2806' size-in-bits='64' id='type-id-2807'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2765' size-in-bits='64' id='type-id-3264'/>
+    <pointer-type-def type-id='type-id-3265' size-in-bits='64' id='type-id-3266'/>
+    <pointer-type-def type-id='type-id-3267' size-in-bits='64' id='type-id-3268'/>
+    <pointer-type-def type-id='type-id-3269' size-in-bits='64' id='type-id-3270'/>
+    <reference-type-def kind='lvalue' type-id='type-id-2837' size-in-bits='64' id='type-id-2839'/>
+    <pointer-type-def type-id='type-id-3271' size-in-bits='64' id='type-id-3272'/>
+    <pointer-type-def type-id='type-id-3273' size-in-bits='64' id='type-id-3274'/>
+    <pointer-type-def type-id='type-id-3275' size-in-bits='64' id='type-id-3276'/>
+    <pointer-type-def type-id='type-id-3277' size-in-bits='64' id='type-id-3278'/>
+    <pointer-type-def type-id='type-id-3279' size-in-bits='64' id='type-id-3280'/>
     <namespace-decl name='std'>
-      <class-decl name='codecvt_byname&lt;wchar_t, char, __mbstate_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='459' column='1' id='type-id-3264'>
+      <class-decl name='codecvt_byname&lt;wchar_t, char, __mbstate_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='459' column='1' id='type-id-3265'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-976'/>
         <member-function access='private'>
           <function-decl name='codecvt_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='463' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3265' is-artificial='yes'/>
+            <parameter type-id='type-id-3266' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41501,7 +41507,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='codecvt_byname' mangled-name='_ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3265' is-artificial='yes'/>
+            <parameter type-id='type-id-3266' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41509,31 +41515,31 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3265' is-artificial='yes'/>
+            <parameter type-id='type-id-3266' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt_byname' mangled-name='_ZNSt14codecvt_bynameIwc11__mbstate_tED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14codecvt_bynameIwc11__mbstate_tED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3265' is-artificial='yes'/>
+            <parameter type-id='type-id-3266' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~codecvt_byname' mangled-name='_ZNSt14codecvt_bynameIwc11__mbstate_tED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/codecvt.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14codecvt_bynameIwc11__mbstate_tED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3265' is-artificial='yes'/>
+            <parameter type-id='type-id-3266' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='collate_byname&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='760' column='1' id='type-id-3266'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2766'/>
+      <class-decl name='collate_byname&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='760' column='1' id='type-id-3267'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2767'/>
         <member-function access='private'>
           <function-decl name='collate_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='770' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3267' is-artificial='yes'/>
+            <parameter type-id='type-id-3268' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41541,7 +41547,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='collate_byname' mangled-name='_ZNSt14collate_bynameIwEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='770' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14collate_bynameIwEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3267' is-artificial='yes'/>
+            <parameter type-id='type-id-3268' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41549,30 +41555,30 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='783' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3267' is-artificial='yes'/>
+            <parameter type-id='type-id-3268' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate_byname' mangled-name='_ZNSt14collate_bynameIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='783' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14collate_bynameIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3267' is-artificial='yes'/>
+            <parameter type-id='type-id-3268' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~collate_byname' mangled-name='_ZNSt14collate_bynameIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.h' line='783' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt14collate_bynameIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3267' is-artificial='yes'/>
+            <parameter type-id='type-id-3268' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__pad&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='90' column='1' id='type-id-3280'>
+      <class-decl name='__pad&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='90' column='1' id='type-id-3281'>
         <member-function access='private' static='yes'>
           <function-decl name='_S_pad' mangled-name='_ZNSt5__padIwSt11char_traitsIwEE6_S_padERSt8ios_basewPwPKwll' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='1193' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-2542'/>
+            <parameter type-id='type-id-2543'/>
             <parameter type-id='type-id-377'/>
             <parameter type-id='type-id-334'/>
             <parameter type-id='type-id-342'/>
@@ -41582,11 +41588,11 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='numpunct_byname&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1876' column='1' id='type-id-3274'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2579'/>
+      <class-decl name='numpunct_byname&lt;wchar_t&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1876' column='1' id='type-id-3275'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2580'/>
         <member-function access='private'>
           <function-decl name='numpunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1883' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3275' is-artificial='yes'/>
+            <parameter type-id='type-id-3276' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41594,7 +41600,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='numpunct_byname' mangled-name='_ZNSt15numpunct_bynameIwEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1883' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15numpunct_bynameIwEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3275' is-artificial='yes'/>
+            <parameter type-id='type-id-3276' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41602,40 +41608,40 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1898' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3275' is-artificial='yes'/>
+            <parameter type-id='type-id-3276' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct_byname' mangled-name='_ZNSt15numpunct_bynameIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1898' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15numpunct_bynameIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3275' is-artificial='yes'/>
+            <parameter type-id='type-id-3276' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~numpunct_byname' mangled-name='_ZNSt15numpunct_bynameIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1898' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15numpunct_bynameIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3275' is-artificial='yes'/>
+            <parameter type-id='type-id-3276' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__use_cache&lt;std::__numpunct_cache&lt;wchar_t&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='52' column='1' id='type-id-3233'>
+      <class-decl name='__use_cache&lt;std::__numpunct_cache&lt;wchar_t&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='52' column='1' id='type-id-3234'>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt11__use_cacheISt16__numpunct_cacheIwEEclERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.tcc' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3235' is-artificial='yes'/>
+            <parameter type-id='type-id-3236' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-3223'/>
+            <return type-id='type-id-3224'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_get_byname&lt;wchar_t, std::istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='686' column='1' id='type-id-3276'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2784'/>
+      <class-decl name='time_get_byname&lt;wchar_t, std::istreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='686' column='1' id='type-id-3277'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2785'/>
         <member-function access='private'>
           <function-decl name='time_get_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3277' is-artificial='yes'/>
+            <parameter type-id='type-id-3278' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41643,7 +41649,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='time_get_byname' mangled-name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3277' is-artificial='yes'/>
+            <parameter type-id='type-id-3278' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41651,31 +41657,31 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3277' is-artificial='yes'/>
+            <parameter type-id='type-id-3278' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get_byname' mangled-name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3277' is-artificial='yes'/>
+            <parameter type-id='type-id-3278' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_get_byname' mangled-name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3277' is-artificial='yes'/>
+            <parameter type-id='type-id-3278' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='time_put_byname&lt;wchar_t, std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='811' column='1' id='type-id-3278'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2785'/>
+      <class-decl name='time_put_byname&lt;wchar_t, std::ostreambuf_iterator&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt; &gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='811' column='1' id='type-id-3279'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2786'/>
         <member-function access='private'>
           <function-decl name='time_put_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='819' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3279' is-artificial='yes'/>
+            <parameter type-id='type-id-3280' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41683,7 +41689,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='time_put_byname' mangled-name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3279' is-artificial='yes'/>
+            <parameter type-id='type-id-3280' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41691,34 +41697,34 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3279' is-artificial='yes'/>
+            <parameter type-id='type-id-3280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put_byname' mangled-name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3279' is-artificial='yes'/>
+            <parameter type-id='type-id-3280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~time_put_byname' mangled-name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3279' is-artificial='yes'/>
+            <parameter type-id='type-id-3280' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct_byname&lt;wchar_t, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-3270'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2774'/>
+      <class-decl name='moneypunct_byname&lt;wchar_t, false&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-3271'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2775'/>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt17moneypunct_bynameIwLb0EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1330' column='1' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb0EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3271' is-artificial='yes'/>
+            <parameter type-id='type-id-3272' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41726,7 +41732,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIwLb0EEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb0EEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3271' is-artificial='yes'/>
+            <parameter type-id='type-id-3272' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41734,34 +41740,34 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3271' is-artificial='yes'/>
+            <parameter type-id='type-id-3272' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIwLb0EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb0EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3271' is-artificial='yes'/>
+            <parameter type-id='type-id-3272' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIwLb0EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb0EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3271' is-artificial='yes'/>
+            <parameter type-id='type-id-3272' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='moneypunct_byname&lt;wchar_t, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-3272'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2777'/>
+      <class-decl name='moneypunct_byname&lt;wchar_t, true&gt;' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1324' column='1' id='type-id-3273'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2778'/>
         <data-member access='private' static='yes'>
           <var-decl name='intl' type-id='type-id-249' mangled-name='_ZNSt17moneypunct_bynameIwLb1EE4intlE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1330' column='1' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb1EE4intlE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3273' is-artificial='yes'/>
+            <parameter type-id='type-id-3274' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41769,7 +41775,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIwLb1EEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1333' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb1EEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3273' is-artificial='yes'/>
+            <parameter type-id='type-id-3274' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41777,31 +41783,31 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3273' is-artificial='yes'/>
+            <parameter type-id='type-id-3274' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIwLb1EED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb1EED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3273' is-artificial='yes'/>
+            <parameter type-id='type-id-3274' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~moneypunct_byname' mangled-name='_ZNSt17moneypunct_bynameIwLb1EED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt17moneypunct_bynameIwLb1EED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3273' is-artificial='yes'/>
+            <parameter type-id='type-id-3274' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='messages_byname&lt;wchar_t&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1879' column='1' id='type-id-3268'>
-        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2767'/>
+      <class-decl name='messages_byname&lt;wchar_t&gt;' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1879' column='1' id='type-id-3269'>
+        <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2768'/>
         <member-function access='private'>
           <function-decl name='messages_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/messages_members.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3269' is-artificial='yes'/>
+            <parameter type-id='type-id-3270' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41809,7 +41815,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='messages_byname' mangled-name='_ZNSt15messages_bynameIwEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/messages_members.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15messages_bynameIwEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3269' is-artificial='yes'/>
+            <parameter type-id='type-id-3270' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -41817,41 +41823,41 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1890' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3269' is-artificial='yes'/>
+            <parameter type-id='type-id-3270' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages_byname' mangled-name='_ZNSt15messages_bynameIwED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15messages_bynameIwED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3269' is-artificial='yes'/>
+            <parameter type-id='type-id-3270' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~messages_byname' mangled-name='_ZNSt15messages_bynameIwED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1890' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt15messages_bynameIwED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3269' is-artificial='yes'/>
+            <parameter type-id='type-id-3270' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;wchar_t, false&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-3227'>
+      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;wchar_t, false&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-3228'>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt11__use_cacheISt18__moneypunct_cacheIwLb0EEEclERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3229' is-artificial='yes'/>
+            <parameter type-id='type-id-3230' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-3219'/>
+            <return type-id='type-id-3220'/>
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;wchar_t, true&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-3230'>
+      <class-decl name='__use_cache&lt;std::__moneypunct_cache&lt;wchar_t, true&gt; &gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='40' column='1' id='type-id-3231'>
         <member-function access='public' const='yes'>
           <function-decl name='operator()' mangled-name='_ZNKSt11__use_cacheISt18__moneypunct_cacheIwLb1EEEclERKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.tcc' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3232' is-artificial='yes'/>
+            <parameter type-id='type-id-3233' is-artificial='yes'/>
             <parameter type-id='type-id-965'/>
-            <return type-id='type-id-3221'/>
+            <return type-id='type-id-3222'/>
           </function-decl>
         </member-function>
       </class-decl>
@@ -41909,84 +41915,84 @@ 
       </function-decl>
       <function-decl name='use_facet&lt;std::__timepunct&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt11__timepunctIwEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt11__timepunctIwEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3225'/>
+        <return type-id='type-id-3226'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::codecvt&lt;wchar_t, char, __mbstate_t&gt; &gt;' mangled-name='_ZSt9use_facetISt7codecvtIwc11__mbstate_tEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7codecvtIwc11__mbstate_tEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-1304'/>
+        <return type-id='type-id-1305'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::collate&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt7collateIwEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7collateIwEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3237'/>
+        <return type-id='type-id-3238'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::ctype&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2189'/>
+        <return type-id='type-id-2190'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::messages&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt8messagesIwEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8messagesIwEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3241'/>
+        <return type-id='type-id-3242'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::money_get&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3243'/>
+        <return type-id='type-id-3244'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::money_put&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3246'/>
+        <return type-id='type-id-3247'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::moneypunct&lt;wchar_t, false&gt; &gt;' mangled-name='_ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3250'/>
+        <return type-id='type-id-3251'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::moneypunct&lt;wchar_t, true&gt; &gt;' mangled-name='_ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3252'/>
+        <return type-id='type-id-3253'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::num_get&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2536'/>
+        <return type-id='type-id-2537'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::num_put&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-2540'/>
+        <return type-id='type-id-2541'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::numpunct&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3254'/>
+        <return type-id='type-id-3255'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::time_get&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3256'/>
+        <return type-id='type-id-3257'/>
       </function-decl>
       <function-decl name='use_facet&lt;std::time_put&lt;wchar_t&gt; &gt;' mangled-name='_ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale@@GLIBCXX_3.4'>
         <parameter type-id='type-id-965' name='__loc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_classes.tcc' line='130' column='1'/>
-        <return type-id='type-id-3259'/>
+        <return type-id='type-id-3260'/>
       </function-decl>
       <function-decl name='__write&lt;wchar_t&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2315'/>
+        <parameter type-id='type-id-2316'/>
         <parameter type-id='type-id-342'/>
         <parameter type-id='type-id-6'/>
-        <return type-id='type-id-2315'/>
+        <return type-id='type-id-2316'/>
       </function-decl>
       <function-decl name='__distance&lt;const wchar_t*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_funcs.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-342'/>
         <parameter type-id='type-id-342'/>
         <parameter type-id='type-id-348'/>
-        <return type-id='type-id-1113'/>
+        <return type-id='type-id-1114'/>
       </function-decl>
       <function-decl name='distance&lt;const wchar_t*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_funcs.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-342'/>
         <parameter type-id='type-id-342'/>
-        <return type-id='type-id-1113'/>
+        <return type-id='type-id-1114'/>
       </function-decl>
       <function-decl name='__iterator_category&lt;const wchar_t*&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_iterator_base_types.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-782'/>
-        <return type-id='type-id-2335'/>
+        <return type-id='type-id-2336'/>
       </function-decl>
       <function-decl name='operator!=&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
-        <parameter type-id='type-id-2572'/>
-        <parameter type-id='type-id-2572'/>
+        <parameter type-id='type-id-2573'/>
+        <parameter type-id='type-id-2573'/>
         <return type-id='type-id-40'/>
       </function-decl>
     </namespace-decl>
@@ -41998,81 +42004,81 @@ 
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='atomicity.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-594' volatile='yes' id='type-id-3281'/>
-    <pointer-type-def type-id='type-id-3281' size-in-bits='64' id='type-id-3282'/>
+    <qualified-type-def type-id='type-id-594' volatile='yes' id='type-id-3282'/>
+    <pointer-type-def type-id='type-id-3282' size-in-bits='64' id='type-id-3283'/>
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='__exchange_and_add' mangled-name='_ZN9__gnu_cxx18__exchange_and_addEPVii' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/atomicity.cc' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx18__exchange_and_addEPVii@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-3282'/>
+        <parameter type-id='type-id-3283'/>
         <parameter type-id='type-id-6'/>
         <return type-id='type-id-594'/>
       </function-decl>
       <function-decl name='__atomic_add' mangled-name='_ZN9__gnu_cxx12__atomic_addEPVii' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/atomicity.cc' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx12__atomic_addEPVii@@GLIBCXX_3.4'>
-        <parameter type-id='type-id-3282'/>
+        <parameter type-id='type-id-3283'/>
         <parameter type-id='type-id-6'/>
         <return type-id='type-id-5'/>
       </function-decl>
     </namespace-decl>
   </abi-instr>
   <abi-instr address-size='64' path='basic_file.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <array-type-def dimensions='1' type-id='type-id-20' size-in-bits='192' id='type-id-3283'>
-      <subrange length='3' type-id='type-id-176' id='type-id-3284'/>
+    <array-type-def dimensions='1' type-id='type-id-20' size-in-bits='192' id='type-id-3284'>
+      <subrange length='3' type-id='type-id-176' id='type-id-3285'/>
     </array-type-def>
-    <class-decl name='stat64' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/bits/stat.h' line='119' column='1' id='type-id-3285'>
+    <class-decl name='stat64' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/bits/stat.h' line='119' column='1' id='type-id-3286'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='st_dev' type-id='type-id-3286' visibility='default' filepath='/usr/include/bits/stat.h' line='121' column='1'/>
+        <var-decl name='st_dev' type-id='type-id-3287' visibility='default' filepath='/usr/include/bits/stat.h' line='121' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='st_ino' type-id='type-id-3287' visibility='default' filepath='/usr/include/bits/stat.h' line='123' column='1'/>
+        <var-decl name='st_ino' type-id='type-id-3288' visibility='default' filepath='/usr/include/bits/stat.h' line='123' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='st_nlink' type-id='type-id-3288' visibility='default' filepath='/usr/include/bits/stat.h' line='124' column='1'/>
+        <var-decl name='st_nlink' type-id='type-id-3289' visibility='default' filepath='/usr/include/bits/stat.h' line='124' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='st_mode' type-id='type-id-3289' visibility='default' filepath='/usr/include/bits/stat.h' line='125' column='1'/>
+        <var-decl name='st_mode' type-id='type-id-3290' visibility='default' filepath='/usr/include/bits/stat.h' line='125' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='st_uid' type-id='type-id-3290' visibility='default' filepath='/usr/include/bits/stat.h' line='132' column='1'/>
+        <var-decl name='st_uid' type-id='type-id-3291' visibility='default' filepath='/usr/include/bits/stat.h' line='132' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='st_gid' type-id='type-id-3291' visibility='default' filepath='/usr/include/bits/stat.h' line='133' column='1'/>
+        <var-decl name='st_gid' type-id='type-id-3292' visibility='default' filepath='/usr/include/bits/stat.h' line='133' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
         <var-decl name='__pad0' type-id='type-id-6' visibility='default' filepath='/usr/include/bits/stat.h' line='135' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='st_rdev' type-id='type-id-3286' visibility='default' filepath='/usr/include/bits/stat.h' line='136' column='1'/>
+        <var-decl name='st_rdev' type-id='type-id-3287' visibility='default' filepath='/usr/include/bits/stat.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
         <var-decl name='st_size' type-id='type-id-632' visibility='default' filepath='/usr/include/bits/stat.h' line='137' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='st_blksize' type-id='type-id-3292' visibility='default' filepath='/usr/include/bits/stat.h' line='143' column='1'/>
+        <var-decl name='st_blksize' type-id='type-id-3293' visibility='default' filepath='/usr/include/bits/stat.h' line='143' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='st_blocks' type-id='type-id-3293' visibility='default' filepath='/usr/include/bits/stat.h' line='144' column='1'/>
+        <var-decl name='st_blocks' type-id='type-id-3294' visibility='default' filepath='/usr/include/bits/stat.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='st_atim' type-id='type-id-3294' visibility='default' filepath='/usr/include/bits/stat.h' line='152' column='1'/>
+        <var-decl name='st_atim' type-id='type-id-3295' visibility='default' filepath='/usr/include/bits/stat.h' line='152' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='st_mtim' type-id='type-id-3294' visibility='default' filepath='/usr/include/bits/stat.h' line='153' column='1'/>
+        <var-decl name='st_mtim' type-id='type-id-3295' visibility='default' filepath='/usr/include/bits/stat.h' line='153' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='st_ctim' type-id='type-id-3294' visibility='default' filepath='/usr/include/bits/stat.h' line='154' column='1'/>
+        <var-decl name='st_ctim' type-id='type-id-3295' visibility='default' filepath='/usr/include/bits/stat.h' line='154' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='960'>
-        <var-decl name='__unused' type-id='type-id-3283' visibility='default' filepath='/usr/include/bits/stat.h' line='167' column='1'/>
+        <var-decl name='__unused' type-id='type-id-3284' visibility='default' filepath='/usr/include/bits/stat.h' line='167' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='__dev_t' type-id='type-id-44' filepath='/usr/include/bits/types.h' line='134' column='1' id='type-id-3286'/>
-    <typedef-decl name='__uid_t' type-id='type-id-39' filepath='/usr/include/bits/types.h' line='135' column='1' id='type-id-3290'/>
-    <typedef-decl name='__gid_t' type-id='type-id-39' filepath='/usr/include/bits/types.h' line='136' column='1' id='type-id-3291'/>
-    <typedef-decl name='__ino64_t' type-id='type-id-44' filepath='/usr/include/bits/types.h' line='138' column='1' id='type-id-3287'/>
-    <typedef-decl name='__mode_t' type-id='type-id-39' filepath='/usr/include/bits/types.h' line='139' column='1' id='type-id-3289'/>
-    <typedef-decl name='__nlink_t' type-id='type-id-44' filepath='/usr/include/bits/types.h' line='140' column='1' id='type-id-3288'/>
-    <typedef-decl name='__blksize_t' type-id='type-id-20' filepath='/usr/include/bits/types.h' line='164' column='1' id='type-id-3292'/>
-    <typedef-decl name='__blkcnt64_t' type-id='type-id-20' filepath='/usr/include/bits/types.h' line='170' column='1' id='type-id-3293'/>
-    <class-decl name='iovec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/bits/uio.h' line='44' column='1' id='type-id-3295'>
+    <typedef-decl name='__dev_t' type-id='type-id-44' filepath='/usr/include/bits/types.h' line='134' column='1' id='type-id-3287'/>
+    <typedef-decl name='__uid_t' type-id='type-id-39' filepath='/usr/include/bits/types.h' line='135' column='1' id='type-id-3291'/>
+    <typedef-decl name='__gid_t' type-id='type-id-39' filepath='/usr/include/bits/types.h' line='136' column='1' id='type-id-3292'/>
+    <typedef-decl name='__ino64_t' type-id='type-id-44' filepath='/usr/include/bits/types.h' line='138' column='1' id='type-id-3288'/>
+    <typedef-decl name='__mode_t' type-id='type-id-39' filepath='/usr/include/bits/types.h' line='139' column='1' id='type-id-3290'/>
+    <typedef-decl name='__nlink_t' type-id='type-id-44' filepath='/usr/include/bits/types.h' line='140' column='1' id='type-id-3289'/>
+    <typedef-decl name='__blksize_t' type-id='type-id-20' filepath='/usr/include/bits/types.h' line='164' column='1' id='type-id-3293'/>
+    <typedef-decl name='__blkcnt64_t' type-id='type-id-20' filepath='/usr/include/bits/types.h' line='170' column='1' id='type-id-3294'/>
+    <class-decl name='iovec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/bits/uio.h' line='44' column='1' id='type-id-3296'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='iov_base' type-id='type-id-34' visibility='default' filepath='/usr/include/bits/uio.h' line='46' column='1'/>
       </data-member>
@@ -42080,8 +42086,8 @@ 
         <var-decl name='iov_len' type-id='type-id-93' visibility='default' filepath='/usr/include/bits/uio.h' line='47' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='nfds_t' type-id='type-id-44' filepath='/usr/include/sys/poll.h' line='37' column='1' id='type-id-3296'/>
-    <class-decl name='pollfd' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/sys/poll.h' line='40' column='1' id='type-id-3297'>
+    <typedef-decl name='nfds_t' type-id='type-id-44' filepath='/usr/include/sys/poll.h' line='37' column='1' id='type-id-3297'/>
+    <class-decl name='pollfd' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/sys/poll.h' line='40' column='1' id='type-id-3298'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='fd' type-id='type-id-6' visibility='default' filepath='/usr/include/sys/poll.h' line='42' column='1'/>
       </data-member>
@@ -42092,7 +42098,7 @@ 
         <var-decl name='revents' type-id='type-id-623' visibility='default' filepath='/usr/include/sys/poll.h' line='44' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/time.h' line='120' column='1' id='type-id-3294'>
+    <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/time.h' line='120' column='1' id='type-id-3295'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='tv_sec' type-id='type-id-196' visibility='default' filepath='/usr/include/time.h' line='122' column='1'/>
       </data-member>
@@ -42100,16 +42106,16 @@ 
         <var-decl name='tv_nsec' type-id='type-id-20' visibility='default' filepath='/usr/include/time.h' line='123' column='1'/>
       </data-member>
     </class-decl>
-    <qualified-type-def type-id='type-id-3295' const='yes' id='type-id-3298'/>
-    <pointer-type-def type-id='type-id-3298' size-in-bits='64' id='type-id-3299'/>
-    <qualified-type-def type-id='type-id-953' const='yes' id='type-id-3300'/>
-    <pointer-type-def type-id='type-id-3300' size-in-bits='64' id='type-id-3301'/>
-    <pointer-type-def type-id='type-id-3297' size-in-bits='64' id='type-id-3302'/>
-    <pointer-type-def type-id='type-id-3285' size-in-bits='64' id='type-id-3303'/>
-    <pointer-type-def type-id='type-id-953' size-in-bits='64' id='type-id-3304'/>
-    <pointer-type-def type-id='type-id-957' size-in-bits='64' id='type-id-3305'/>
+    <qualified-type-def type-id='type-id-3296' const='yes' id='type-id-3299'/>
+    <pointer-type-def type-id='type-id-3299' size-in-bits='64' id='type-id-3300'/>
+    <qualified-type-def type-id='type-id-953' const='yes' id='type-id-3301'/>
+    <pointer-type-def type-id='type-id-3301' size-in-bits='64' id='type-id-3302'/>
+    <pointer-type-def type-id='type-id-3298' size-in-bits='64' id='type-id-3303'/>
+    <pointer-type-def type-id='type-id-3286' size-in-bits='64' id='type-id-3304'/>
+    <pointer-type-def type-id='type-id-953' size-in-bits='64' id='type-id-3305'/>
+    <pointer-type-def type-id='type-id-957' size-in-bits='64' id='type-id-3306'/>
     <namespace-decl name='std'>
-      <class-decl name='numeric_limits&lt;long int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1121' column='1' id='type-id-3306'>
+      <class-decl name='numeric_limits&lt;long int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1121' column='1' id='type-id-3307'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIlE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1123' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -42156,7 +42162,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIlE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1159' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIlE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1161' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIlE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1161' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIlE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1162' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -42177,7 +42183,7 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIlE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1181' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIlE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1183' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIlE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1183' column='1' elf-symbol-id='_ZNSt14numeric_limitsIlE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='public' static='yes'>
           <function-decl name='max' mangled-name='_ZNSt14numeric_limitsIlE3maxEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1129' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -42187,83 +42193,83 @@ 
       </class-decl>
       <class-decl name='__basic_file&lt;char&gt;' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='54' column='1' id='type-id-953'>
         <data-member access='private' layout-offset-in-bits='0'>
-          <var-decl name='_M_cfile' type-id='type-id-2482' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='57' column='1'/>
+          <var-decl name='_M_cfile' type-id='type-id-2483' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='57' column='1'/>
         </data-member>
         <data-member access='private' layout-offset-in-bits='64'>
           <var-decl name='_M_cfile_created' type-id='type-id-40' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='60' column='1'/>
         </data-member>
         <member-function access='private'>
           <function-decl name='__basic_file' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
-            <parameter type-id='type-id-3305'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
+            <parameter type-id='type-id-3306'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__basic_file' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='__basic_file' mangled-name='_ZNSt12__basic_fileIcEC2EP15pthread_mutex_t' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcEC2EP15pthread_mutex_t@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
-            <parameter type-id='type-id-3305'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
+            <parameter type-id='type-id-3306'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private' const='yes'>
           <function-decl name='is_open' mangled-name='_ZNKSt12__basic_fileIcE7is_openEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt12__basic_fileIcE7is_openEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3301' is-artificial='yes'/>
+            <parameter type-id='type-id-3302' is-artificial='yes'/>
             <return type-id='type-id-40'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='open' mangled-name='_ZNSt12__basic_fileIcE4openEPKcSt13_Ios_Openmodei' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE4openEPKcSt13_Ios_Openmodei@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-958'/>
             <parameter type-id='type-id-6'/>
-            <return type-id='type-id-3304'/>
+            <return type-id='type-id-3305'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='sys_open' mangled-name='_ZNSt12__basic_fileIcE8sys_openEiSt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE8sys_openEiSt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-6'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-3304'/>
+            <return type-id='type-id-3305'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='fd' mangled-name='_ZNSt12__basic_fileIcE2fdEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE2fdEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='file' mangled-name='_ZNSt12__basic_fileIcE4fileEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE4fileEv@@GLIBCXX_3.4.1'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
-            <return type-id='type-id-2482'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
+            <return type-id='type-id-2483'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='close' mangled-name='_ZNSt12__basic_fileIcE5closeEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE5closeEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
-            <return type-id='type-id-3304'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
+            <return type-id='type-id-3305'/>
           </function-decl>
         </member-function>
         <member-function access='private' destructor='yes'>
           <function-decl name='~__basic_file' mangled-name='_ZNSt12__basic_fileIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='xsgetn' mangled-name='_ZNSt12__basic_fileIcE6xsgetnEPcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE6xsgetnEPcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-94'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
@@ -42271,7 +42277,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='xsputn' mangled-name='_ZNSt12__basic_fileIcE6xsputnEPKcl' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE6xsputnEPKcl@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-897'/>
             <return type-id='type-id-897'/>
@@ -42279,7 +42285,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='xsputn_2' mangled-name='_ZNSt12__basic_fileIcE8xsputn_2EPKclS2_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE8xsputn_2EPKclS2_l@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-897'/>
             <parameter type-id='type-id-4'/>
@@ -42289,7 +42295,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='seekoff' mangled-name='_ZNSt12__basic_fileIcE7seekoffElSt12_Ios_Seekdir' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE7seekoffElSt12_Ios_Seekdir@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <parameter type-id='type-id-888'/>
             <parameter type-id='type-id-964'/>
             <return type-id='type-id-888'/>
@@ -42297,21 +42303,21 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='sync' mangled-name='_ZNSt12__basic_fileIcE4syncEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE4syncEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <return type-id='type-id-6'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='sys_open' mangled-name='_ZNSt12__basic_fileIcE8sys_openEP8_IO_FILESt13_Ios_Openmode' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE8sys_openEP8_IO_FILESt13_Ios_Openmode@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
-            <parameter type-id='type-id-2482'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
+            <parameter type-id='type-id-2483'/>
             <parameter type-id='type-id-958'/>
-            <return type-id='type-id-3304'/>
+            <return type-id='type-id-3305'/>
           </function-decl>
         </member-function>
         <member-function access='private'>
           <function-decl name='showmanyc' mangled-name='_ZNSt12__basic_fileIcE9showmanycEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/basic_file.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12__basic_fileIcE9showmanycEv@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3304' is-artificial='yes'/>
+            <parameter type-id='type-id-3305' is-artificial='yes'/>
             <return type-id='type-id-897'/>
           </function-decl>
         </member-function>
@@ -42342,20 +42348,20 @@ 
       <return type-id='type-id-6'/>
     </function-decl>
     <function-decl name='poll' filepath='/usr/include/sys/poll.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
-      <parameter type-id='type-id-3302'/>
-      <parameter type-id='type-id-3296'/>
+      <parameter type-id='type-id-3303'/>
+      <parameter type-id='type-id-3297'/>
       <parameter type-id='type-id-6'/>
       <return type-id='type-id-6'/>
     </function-decl>
     <function-decl name='__fxstat64' filepath='/usr/include/sys/stat.h' line='434' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-6'/>
       <parameter type-id='type-id-6'/>
-      <parameter type-id='type-id-3303'/>
+      <parameter type-id='type-id-3304'/>
       <return type-id='type-id-6'/>
     </function-decl>
     <function-decl name='writev' filepath='/usr/include/sys/uio.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-6'/>
-      <parameter type-id='type-id-3299'/>
+      <parameter type-id='type-id-3300'/>
       <parameter type-id='type-id-6'/>
       <return type-id='type-id-160'/>
     </function-decl>
@@ -42373,11 +42379,11 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='c++locale.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2049' const='yes' id='type-id-3307'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3307' size-in-bits='64' id='type-id-3308'/>
-    <reference-type-def kind='lvalue' type-id='type-id-995' size-in-bits='64' id='type-id-2795'/>
+    <qualified-type-def type-id='type-id-2050' const='yes' id='type-id-3308'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3308' size-in-bits='64' id='type-id-3309'/>
+    <reference-type-def kind='lvalue' type-id='type-id-995' size-in-bits='64' id='type-id-2796'/>
     <namespace-decl name='std'>
-      <class-decl name='numeric_limits&lt;float&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1553' column='1' id='type-id-3309'>
+      <class-decl name='numeric_limits&lt;float&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1553' column='1' id='type-id-3310'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIfE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1555' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -42424,7 +42430,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIfE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1592' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIfE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1594' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIfE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1594' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIfE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1596' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -42445,7 +42451,7 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIfE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1617' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIfE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1619' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIfE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1619' column='1' elf-symbol-id='_ZNSt14numeric_limitsIfE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='public' static='yes'>
           <function-decl name='infinity' mangled-name='_ZNSt14numeric_limitsIfE8infinityEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1599' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -42458,7 +42464,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='numeric_limits&lt;double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1628' column='1' id='type-id-3310'>
+      <class-decl name='numeric_limits&lt;double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1628' column='1' id='type-id-3311'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIdE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1630' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -42505,7 +42511,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIdE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1667' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIdE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1669' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIdE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1669' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIdE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1671' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -42526,7 +42532,7 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIdE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1692' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIdE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1694' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIdE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1694' column='1' elf-symbol-id='_ZNSt14numeric_limitsIdE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='public' static='yes'>
           <function-decl name='infinity' mangled-name='_ZNSt14numeric_limitsIdE8infinityEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1674' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -42539,7 +42545,7 @@ 
           </function-decl>
         </member-function>
       </class-decl>
-      <class-decl name='numeric_limits&lt;long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1703' column='1' id='type-id-3311'>
+      <class-decl name='numeric_limits&lt;long double&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1703' column='1' id='type-id-3312'>
         <data-member access='public' static='yes'>
           <var-decl name='is_specialized' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIeE14is_specializedE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1705' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE14is_specializedE@@GLIBCXX_3.4'/>
         </data-member>
@@ -42586,7 +42592,7 @@ 
           <var-decl name='has_signaling_NaN' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIeE17has_signaling_NaNE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1742' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE17has_signaling_NaNE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='has_denorm' type-id='type-id-1710' mangled-name='_ZNSt14numeric_limitsIeE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1744' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE10has_denormE@@GLIBCXX_3.4'/>
+          <var-decl name='has_denorm' type-id='type-id-1711' mangled-name='_ZNSt14numeric_limitsIeE10has_denormE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1744' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE10has_denormE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
           <var-decl name='has_denorm_loss' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIeE15has_denorm_lossE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1746' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE15has_denorm_lossE@@GLIBCXX_3.4'/>
@@ -42607,7 +42613,7 @@ 
           <var-decl name='tinyness_before' type-id='type-id-249' mangled-name='_ZNSt14numeric_limitsIeE15tinyness_beforeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1767' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE15tinyness_beforeE@@GLIBCXX_3.4'/>
         </data-member>
         <data-member access='public' static='yes'>
-          <var-decl name='round_style' type-id='type-id-1712' mangled-name='_ZNSt14numeric_limitsIeE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1769' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE11round_styleE@@GLIBCXX_3.4'/>
+          <var-decl name='round_style' type-id='type-id-1713' mangled-name='_ZNSt14numeric_limitsIeE11round_styleE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1769' column='1' elf-symbol-id='_ZNSt14numeric_limitsIeE11round_styleE@@GLIBCXX_3.4'/>
         </data-member>
         <member-function access='public' static='yes'>
           <function-decl name='infinity' mangled-name='_ZNSt14numeric_limitsIeE8infinityEv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/limits' line='1749' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -42622,63 +42628,63 @@ 
       </class-decl>
       <function-decl name='__convert_to_v&lt;float&gt;' mangled-name='_ZSt14__convert_to_vIfEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt14__convert_to_vIfEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct@@GLIBCXX_3.4'>
         <parameter type-id='type-id-4' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='44' column='1'/>
-        <parameter type-id='type-id-1045' name='__v' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='44' column='1'/>
-        <parameter type-id='type-id-2795' name='__err' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='44' column='1'/>
-        <parameter type-id='type-id-3308' name='__cloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='45' column='1'/>
+        <parameter type-id='type-id-1046' name='__v' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='44' column='1'/>
+        <parameter type-id='type-id-2796' name='__err' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='44' column='1'/>
+        <parameter type-id='type-id-3309' name='__cloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='45' column='1'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__convert_to_v&lt;double&gt;' mangled-name='_ZSt14__convert_to_vIdEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='71' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt14__convert_to_vIdEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct@@GLIBCXX_3.4'>
         <parameter type-id='type-id-4' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='71' column='1'/>
-        <parameter type-id='type-id-1046' name='__v' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='71' column='1'/>
-        <parameter type-id='type-id-2795' name='__err' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='71' column='1'/>
-        <parameter type-id='type-id-3308' name='__cloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='72' column='1'/>
+        <parameter type-id='type-id-1047' name='__v' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='71' column='1'/>
+        <parameter type-id='type-id-2796' name='__err' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='71' column='1'/>
+        <parameter type-id='type-id-3309' name='__cloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='72' column='1'/>
         <return type-id='type-id-5'/>
       </function-decl>
       <function-decl name='__convert_to_v&lt;long double&gt;' mangled-name='_ZSt14__convert_to_vIeEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt14__convert_to_vIeEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct@@GLIBCXX_3.4'>
         <parameter type-id='type-id-4' name='__s' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='98' column='1'/>
-        <parameter type-id='type-id-1047' name='__v' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='98' column='1'/>
-        <parameter type-id='type-id-2795' name='__err' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='98' column='1'/>
-        <parameter type-id='type-id-3308' name='__cloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='99' column='1'/>
+        <parameter type-id='type-id-1048' name='__v' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='98' column='1'/>
+        <parameter type-id='type-id-2796' name='__err' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='98' column='1'/>
+        <parameter type-id='type-id-3309' name='__cloc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='99' column='1'/>
         <return type-id='type-id-5'/>
       </function-decl>
     </namespace-decl>
     <function-decl name='__strtod_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-4'/>
       <parameter type-id='type-id-273'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-254'/>
     </function-decl>
     <function-decl name='__strtof_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-4'/>
       <parameter type-id='type-id-273'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-374'/>
     </function-decl>
     <function-decl name='__newlocale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-6'/>
       <parameter type-id='type-id-4'/>
-      <parameter type-id='type-id-2024'/>
-      <return type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
+      <return type-id='type-id-2025'/>
     </function-decl>
     <function-decl name='__freelocale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-5'/>
     </function-decl>
     <function-decl name='__duplocale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
-      <parameter type-id='type-id-2024'/>
-      <return type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
+      <return type-id='type-id-2025'/>
     </function-decl>
     <function-decl name='strtold_l' filepath='/usr/include/stdlib.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-4'/>
       <parameter type-id='type-id-273'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-375'/>
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='codecvt_members.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
     <function-decl name='__uselocale' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
-      <parameter type-id='type-id-2024'/>
-      <return type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
+      <return type-id='type-id-2025'/>
     </function-decl>
     <function-decl name='__ctype_get_mb_cur_max' filepath='/usr/include/stdlib.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-93'/>
@@ -42701,47 +42707,47 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='collate_members.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2738' const='yes' id='type-id-2664'/>
-    <pointer-type-def type-id='type-id-2664' size-in-bits='64' id='type-id-2786'/>
-    <qualified-type-def type-id='type-id-2766' const='yes' id='type-id-3236'/>
-    <pointer-type-def type-id='type-id-3236' size-in-bits='64' id='type-id-2788'/>
+    <qualified-type-def type-id='type-id-2739' const='yes' id='type-id-2665'/>
+    <pointer-type-def type-id='type-id-2665' size-in-bits='64' id='type-id-2787'/>
+    <qualified-type-def type-id='type-id-2767' const='yes' id='type-id-3237'/>
+    <pointer-type-def type-id='type-id-3237' size-in-bits='64' id='type-id-2789'/>
     <function-decl name='__strcoll_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-4'/>
       <parameter type-id='type-id-4'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-6'/>
     </function-decl>
     <function-decl name='__strxfrm_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-94'/>
       <parameter type-id='type-id-4'/>
       <parameter type-id='type-id-93'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-93'/>
     </function-decl>
     <function-decl name='__wcscoll_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-342'/>
       <parameter type-id='type-id-342'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-6'/>
     </function-decl>
     <function-decl name='__wcsxfrm_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-334'/>
       <parameter type-id='type-id-342'/>
       <parameter type-id='type-id-93'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-93'/>
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='ctype_configure_char.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
   </abi-instr>
   <abi-instr address-size='64' path='ctype_members.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <pointer-type-def type-id='type-id-3312' size-in-bits='64' id='type-id-3313'/>
+    <pointer-type-def type-id='type-id-3313' size-in-bits='64' id='type-id-3314'/>
     <namespace-decl name='std'>
-      <class-decl name='ctype_byname&lt;char&gt;' size-in-bits='4608' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1484' column='1' id='type-id-3312'>
+      <class-decl name='ctype_byname&lt;char&gt;' size-in-bits='4608' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1484' column='1' id='type-id-3313'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-986'/>
         <member-function access='private'>
           <function-decl name='ctype_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3313' is-artificial='yes'/>
+            <parameter type-id='type-id-3314' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -42749,7 +42755,7 @@ 
         </member-function>
         <member-function access='private'>
           <function-decl name='ctype_byname' mangled-name='_ZNSt12ctype_bynameIcEC2EPKcm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='42' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12ctype_bynameIcEC2EPKcm@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3313' is-artificial='yes'/>
+            <parameter type-id='type-id-3314' is-artificial='yes'/>
             <parameter type-id='type-id-4'/>
             <parameter type-id='type-id-91'/>
             <return type-id='type-id-5'/>
@@ -42757,21 +42763,21 @@ 
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype_byname' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
-            <parameter type-id='type-id-3313' is-artificial='yes'/>
+            <parameter type-id='type-id-3314' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype_byname' mangled-name='_ZNSt12ctype_bynameIcED0Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12ctype_bynameIcED0Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3313' is-artificial='yes'/>
+            <parameter type-id='type-id-3314' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
         </member-function>
         <member-function access='protected' destructor='yes' vtable-offset='-1'>
           <function-decl name='~ctype_byname' mangled-name='_ZNSt12ctype_bynameIcED2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/ctype_members.cc' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt12ctype_bynameIcED2Ev@@GLIBCXX_3.4'>
-            <parameter type-id='type-id-3313' is-artificial='yes'/>
+            <parameter type-id='type-id-3314' is-artificial='yes'/>
             <parameter type-id='type-id-6' is-artificial='yes'/>
             <return type-id='type-id-5'/>
           </function-decl>
@@ -42781,36 +42787,36 @@ 
     <function-decl name='__iswctype_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-629'/>
       <parameter type-id='type-id-649'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-6'/>
     </function-decl>
     <function-decl name='__towlower_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-629'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-629'/>
     </function-decl>
     <function-decl name='__towupper_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-629'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-629'/>
     </function-decl>
     <function-decl name='__wctype_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-4'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-649'/>
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='messages_members.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2740' const='yes' id='type-id-2669'/>
-    <pointer-type-def type-id='type-id-2669' size-in-bits='64' id='type-id-2846'/>
-    <qualified-type-def type-id='type-id-2767' const='yes' id='type-id-3240'/>
-    <pointer-type-def type-id='type-id-3240' size-in-bits='64' id='type-id-2849'/>
-    <qualified-type-def type-id='type-id-2848' const='yes' id='type-id-3314'/>
-    <reference-type-def kind='lvalue' type-id='type-id-3314' size-in-bits='64' id='type-id-2850'/>
+    <qualified-type-def type-id='type-id-2741' const='yes' id='type-id-2670'/>
+    <pointer-type-def type-id='type-id-2670' size-in-bits='64' id='type-id-2847'/>
+    <qualified-type-def type-id='type-id-2768' const='yes' id='type-id-3241'/>
+    <pointer-type-def type-id='type-id-3241' size-in-bits='64' id='type-id-2850'/>
+    <qualified-type-def type-id='type-id-2849' const='yes' id='type-id-3315'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3315' size-in-bits='64' id='type-id-2851'/>
     <namespace-decl name='std'>
-      <class-decl name='messages_base' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1668' column='1' id='type-id-2845'>
+      <class-decl name='messages_base' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1668' column='1' id='type-id-2846'>
         <member-type access='public'>
-          <typedef-decl name='catalog' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1670' column='1' id='type-id-2847'/>
+          <typedef-decl name='catalog' type-id='type-id-6' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='1670' column='1' id='type-id-2848'/>
         </member-type>
       </class-decl>
     </namespace-decl>
@@ -42820,26 +42826,26 @@ 
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='monetary_members.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <typedef-decl name='nl_item' type-id='type-id-6' filepath='/usr/include/nl_types.h' line='37' column='1' id='type-id-3315'/>
+    <typedef-decl name='nl_item' type-id='type-id-6' filepath='/usr/include/nl_types.h' line='37' column='1' id='type-id-3316'/>
     <function-decl name='__nl_langinfo_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
-      <parameter type-id='type-id-3315'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-3316'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-94'/>
     </function-decl>
   </abi-instr>
   <abi-instr address-size='64' path='numeric_members.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
   </abi-instr>
   <abi-instr address-size='64' path='time_members.cc' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98' language='LANG_C_plus_plus'>
-    <qualified-type-def type-id='type-id-2761' const='yes' id='type-id-2650'/>
-    <pointer-type-def type-id='type-id-2650' size-in-bits='64' id='type-id-2804'/>
-    <qualified-type-def type-id='type-id-2762' const='yes' id='type-id-3224'/>
-    <pointer-type-def type-id='type-id-3224' size-in-bits='64' id='type-id-2807'/>
+    <qualified-type-def type-id='type-id-2762' const='yes' id='type-id-2651'/>
+    <pointer-type-def type-id='type-id-2651' size-in-bits='64' id='type-id-2805'/>
+    <qualified-type-def type-id='type-id-2763' const='yes' id='type-id-3225'/>
+    <pointer-type-def type-id='type-id-3225' size-in-bits='64' id='type-id-2808'/>
     <function-decl name='__strftime_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-94'/>
       <parameter type-id='type-id-93'/>
       <parameter type-id='type-id-4'/>
       <parameter type-id='type-id-255'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-93'/>
     </function-decl>
     <function-decl name='__wcsftime_l' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/c++locale_internal.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -42847,7 +42853,7 @@ 
       <parameter type-id='type-id-93'/>
       <parameter type-id='type-id-342'/>
       <parameter type-id='type-id-255'/>
-      <parameter type-id='type-id-2024'/>
+      <parameter type-id='type-id-2025'/>
       <return type-id='type-id-93'/>
     </function-decl>
   </abi-instr>