Remove extra semicolon

This commit is contained in:
wangqr 2019-09-02 22:23:19 -04:00 committed by Thomas Goyne
parent b429645006
commit 9ed381f498
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ namespace agi {
DEFINE_FS_EXCEPTION(FileNotFound, FileNotAccessible, "File not found: ");
/// An error of some unknown type has occured
DEFINE_EXCEPTION(FileSystemUnknownError, FileSystemError);;
DEFINE_EXCEPTION(FileSystemUnknownError, FileSystemError);
/// The path exists, but isn't a file
DEFINE_FS_EXCEPTION(NotAFile, FileNotAccessible, "Path is not a file (and should be): ");

View File

@ -31,5 +31,5 @@ public:
InitialLineState(agi::Context *c);
std::string const& GetInitialText() const { return initial_text; }
DEFINE_SIGNAL_ADDERS(InitialStateChanged, AddChangeListener);
DEFINE_SIGNAL_ADDERS(InitialStateChanged, AddChangeListener)
};