diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-04-03 23:33:07 +0200 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2016-04-25 22:19:31 +0200 |
commit | 7b4ea8822c9e3e0140dce8e04a6cc264105ce589 (patch) | |
tree | e4fdc8a809c3ba8c4970c0dbbe187ca07f1ff613 /src/core/resource/ResourceLocator.hpp | |
parent | 144e00bedf72f261062ffd0759b9f1f98d6db352 (diff) |
clang compatibility: add missing default constructor
Diffstat (limited to 'src/core/resource/ResourceLocator.hpp')
-rw-r--r-- | src/core/resource/ResourceLocator.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/resource/ResourceLocator.hpp b/src/core/resource/ResourceLocator.hpp index d8afcb2..d4ff6df 100644 --- a/src/core/resource/ResourceLocator.hpp +++ b/src/core/resource/ResourceLocator.hpp @@ -236,6 +236,12 @@ protected: */ std::unique_ptr<std::istream> doStream( const std::string &location) const override; + +public: + /** + * Default constructor. + */ + NullResourceLocatorImpl() {} }; /** |