diff options
author | Colin Snover | 2017-11-29 12:05:59 -0600 |
---|---|---|
committer | Eugene Sandulenko | 2018-01-31 17:58:01 +0100 |
commit | 2e061d95c5aeed11b20999baa62418ef3c53141c (patch) | |
tree | b05ea4d25e3d5ae1a1cd931acb61bcc138c0adaf /common | |
parent | 9916b263831f20e5841275051a8ed014de1f24eb (diff) | |
download | scummvm-rg350-2e061d95c5aeed11b20999baa62418ef3c53141c.tar.gz scummvm-rg350-2e061d95c5aeed11b20999baa62418ef3c53141c.tar.bz2 scummvm-rg350-2e061d95c5aeed11b20999baa62418ef3c53141c.zip |
COMMON: Move VER macro for serializer into common code
Diffstat (limited to 'common')
-rw-r--r-- | common/serializer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/serializer.h b/common/serializer.h index 09f36d064b..e8db40923a 100644 --- a/common/serializer.h +++ b/common/serializer.h @@ -28,6 +28,7 @@ namespace Common { +#define VER(x) Common::Serializer::Version(x) #define SYNC_AS(SUFFIX,TYPE,SIZE) \ template<typename T> \ |