Skip to content

Commit

Permalink
AGS: More RISC OS build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ccawley2011 authored and dreammaster committed Feb 7, 2021
1 parent 1bfff86 commit 75956ac
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions engines/ags/engine/util/library.h
Expand Up @@ -32,9 +32,9 @@ namespace Engine {

class BaseLibrary {
public:
BaseLibrary() = default;
BaseLibrary() {}

virtual ~BaseLibrary() = default;
virtual ~BaseLibrary() {}

virtual AGS::Shared::String GetFilenameForLib(AGS::Shared::String libraryName) = 0;

Expand Down
4 changes: 2 additions & 2 deletions engines/ags/engine/util/mutex.h
Expand Up @@ -29,9 +29,9 @@ namespace Engine {

class BaseMutex {
public:
BaseMutex() = default;
BaseMutex() {}

virtual ~BaseMutex() = default;
virtual ~BaseMutex() {}

BaseMutex &operator=(const BaseMutex &) = delete;
BaseMutex(const BaseMutex &) = delete;
Expand Down
2 changes: 1 addition & 1 deletion engines/ags/engine/util/mutex_std.h
Expand Up @@ -34,7 +34,7 @@ class StdMutex : public BaseMutex {
public:
inline StdMutex() : mutex_() {
}
inline ~StdMutex() override = default;
inline ~StdMutex() override {}

StdMutex &operator=(const StdMutex &) = delete;
StdMutex(const StdMutex &) = delete;
Expand Down
4 changes: 2 additions & 2 deletions engines/ags/engine/util/thread.h
Expand Up @@ -31,8 +31,8 @@ class BaseThread {
public:
typedef void(*AGSThreadEntry)();

BaseThread() = default;
virtual ~BaseThread() = default;
BaseThread() {}
virtual ~BaseThread() {}

BaseThread &operator=(const BaseThread &) = delete;
BaseThread(const BaseThread &) = delete;
Expand Down
2 changes: 1 addition & 1 deletion engines/ags/shared/api/stream_api.h
Expand Up @@ -50,7 +50,7 @@ enum StreamSeek {

class IAGSStream {
public:
virtual ~IAGSStream() = default;
virtual ~IAGSStream() {}

virtual void Close() = 0;

Expand Down

0 comments on commit 75956ac

Please sign in to comment.