Various fixes

Fixes to dead code and a couple self-assignings
This commit is contained in:
Raul Tambre 2015-01-24 21:50:26 +02:00
parent 94c81c73c5
commit be50130c3f
7 changed files with 10 additions and 22 deletions

View file

@ -338,8 +338,6 @@ namespace fmt
{
throw "Invalid formatting (s32): " + std::string(fmt, len);
}
return{};
}
};
@ -360,8 +358,6 @@ namespace fmt
{
throw "Invalid formatting (s64): " + std::string(fmt, len);
}
return{};
}
};
@ -448,8 +444,6 @@ namespace fmt
{
throw "Invalid formatting (const char*): " + std::string(fmt, len);
}
return{};
}
};