Skip to content

Commit

Permalink
Remove extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
wangqr authored and tgoyne committed Sep 23, 2019
1 parent b429645 commit 9ed381f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libaegisub/include/libaegisub/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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): ");
Expand Down
2 changes: 1 addition & 1 deletion src/initial_line_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ class InitialLineState {
InitialLineState(agi::Context *c);

std::string const& GetInitialText() const { return initial_text; }
DEFINE_SIGNAL_ADDERS(InitialStateChanged, AddChangeListener);
DEFINE_SIGNAL_ADDERS(InitialStateChanged, AddChangeListener)
};

0 comments on commit 9ed381f

Please sign in to comment.