diff options
author | rtk0c <[email protected]> | 2021-05-31 12:27:58 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-31 12:27:58 -0700 |
commit | 8157678eba97d7de5c53b424a9866d327392bbd9 (patch) | |
tree | 26348a926040ccfc91f74cdfe49f7153db271f87 /core/src/Model/Template/Template.hpp | |
parent | eef2514908cdec3ec02888b7467cc877d33c1ceb (diff) |
Fix standard incompetence found by MSVC
- requires-expression still not working, because they aren't supported yet outside of a concept
Diffstat (limited to 'core/src/Model/Template/Template.hpp')
-rw-r--r-- | core/src/Model/Template/Template.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/Model/Template/Template.hpp b/core/src/Model/Template/Template.hpp index 0901a1b..f7dd898 100644 --- a/core/src/Model/Template/Template.hpp +++ b/core/src/Model/Template/Template.hpp @@ -29,8 +29,8 @@ public: RR_Success, RR_InvalidFormat, }; - ReadResult ReadFrom(std::istream& stream) = 0; - void WriteTo(std::ostream& stream) const = 0; + virtual ReadResult ReadFrom(std::istream& stream) = 0; + virtual void WriteTo(std::ostream& stream) const = 0; }; class TemplateInfo |