Minor -Wall warning fixes, expanded a comment

This commit is contained in:
Nicolay Korslund 2010-06-25 15:20:04 +02:00
parent 6b0b7c95f8
commit 19649bfeaa
3 changed files with 9 additions and 3 deletions

View file

@ -4,7 +4,13 @@
#include <exception>
#include <string>
/// A simple exception that takes and holds a string
/** @brief A simple exception that takes and holds a string
Usage:
throw str_exception("message");
*/
class str_exception : public std::exception
{
std::string msg;