Remove extra semicolon
This commit is contained in:
parent
fbca222295
commit
d65643ddee
2 changed files with 2 additions and 2 deletions
|
@ -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): ");
|
||||
|
|
|
@ -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)
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue