From 4a921cf65feff5d164884e1693ef79da51bbaee7 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 21 May 2022 20:08:45 -0500 Subject: [PATCH] [nostalgia] Fix compiler warnings --- src/nostalgia/player/app.hpp | 2 +- src/nostalgia/tools/pack/pack.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nostalgia/player/app.hpp b/src/nostalgia/player/app.hpp index be97b74a..17df608f 100644 --- a/src/nostalgia/player/app.hpp +++ b/src/nostalgia/player/app.hpp @@ -4,4 +4,4 @@ #include -class ox::Error run(ox::UniquePtr fs) noexcept; +typename ox::Error run(ox::UniquePtr fs) noexcept; diff --git a/src/nostalgia/tools/pack/pack.hpp b/src/nostalgia/tools/pack/pack.hpp index 8fece55b..09c78495 100644 --- a/src/nostalgia/tools/pack/pack.hpp +++ b/src/nostalgia/tools/pack/pack.hpp @@ -4,6 +4,6 @@ namespace nostalgia { -class ox::Error pack(class ox::FileSystem *src, class ox::FileSystem *dest) noexcept; +typename ox::Error pack(class ox::FileSystem *src, class ox::FileSystem *dest) noexcept; }