mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-01 06:17:58 +03:00
Minor -Wall warning fixes, expanded a comment
This commit is contained in:
parent
6b0b7c95f8
commit
19649bfeaa
3 changed files with 9 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue