Skip to content
Snippets Groups Projects

MuonPrepData: noexcept_moveable for vector optimization

Merged Adam Edward Barton requested to merge abarton/athena:muonprepOpti into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -705,7 +705,7 @@ namespace CxxUtils {
@@ -705,7 +705,7 @@ namespace CxxUtils {
case '$':
case '$':
{
{
// find the end of the math block
// find the end of the math block
size_t endpos = latex.find("$",nextpos+1);
size_t endpos = latex.find('$',nextpos+1);
if(endpos == std::string::npos){
if(endpos == std::string::npos){
// it's unterminated, break
// it's unterminated, break
retval += latex.substr(pos);
retval += latex.substr(pos);
Loading