[Scummvm-git-logs] scummvm master -> d135d8223429b0224fffc9b67589bd8e4a4be1bc
digitall
noreply at scummvm.org
Wed May 11 14:57:24 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
d135d82234 AGS: Fix Stray Extra Semicolon Causing GCC Pedantic Warnings
Commit: d135d8223429b0224fffc9b67589bd8e4a4be1bc
https://github.com/scummvm/scummvm/commit/d135d8223429b0224fffc9b67589bd8e4a4be1bc
Author: D G Turner (digitall at scummvm.org)
Date: 2022-05-11T15:56:50+01:00
Commit Message:
AGS: Fix Stray Extra Semicolon Causing GCC Pedantic Warnings
Changed paths:
engines/ags/shared/script/cc_script.h
diff --git a/engines/ags/shared/script/cc_script.h b/engines/ags/shared/script/cc_script.h
index 7fbfab0a3d8..18bdc78aa15 100644
--- a/engines/ags/shared/script/cc_script.h
+++ b/engines/ags/shared/script/cc_script.h
@@ -70,7 +70,7 @@ public:
void Write(Shared::Stream *out);
// read back a script written with Write
bool Read(Shared::Stream *in);
- const char *GetSectionName(int32_t offset) const;;
+ const char *GetSectionName(int32_t offset) const;
protected:
// free the memory occupied by the script - do NOT attempt to run the
More information about the Scummvm-git-logs
mailing list