Skip to content
Snippets Groups Projects
  • Nat Goodspeed's avatar
    d0249fb7
    MAINT-5232: Eliminate pointless string search for "class " prefix. · d0249fb7
    Nat Goodspeed authored
    The Visual C++ runtime produces typeid(MyClass).name() as "class MyClass".
    It's prudent to check for the presence of that prefix before stripping off the
    first six characters, but if the first comparison should ever fail, find()
    would continue searching the rest of the string for "class " -- a search
    guaranteed to fail. Use compare() instead.
    d0249fb7
    History
    MAINT-5232: Eliminate pointless string search for "class " prefix.
    Nat Goodspeed authored
    The Visual C++ runtime produces typeid(MyClass).name() as "class MyClass".
    It's prudent to check for the presence of that prefix before stripping off the
    first six characters, but if the first comparison should ever fail, find()
    would continue searching the rest of the string for "class " -- a search
    guaranteed to fail. Use compare() instead.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.