From 09e31cf75a2e883a2bcc1fb2db84fb9a531aacf3 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Wed, 27 Nov 2019 17:48:54 +0800 Subject: [PATCH] Fix --- code/nel/include/nel/misc/i_streamed_package_provider.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/include/nel/misc/i_streamed_package_provider.h b/code/nel/include/nel/misc/i_streamed_package_provider.h index 6e74d866d..320e3cdfd 100644 --- a/code/nel/include/nel/misc/i_streamed_package_provider.h +++ b/code/nel/include/nel/misc/i_streamed_package_provider.h @@ -33,7 +33,7 @@ public: /// filePath: [out] ex. /games/nel/stream/00/00/000000000.. /// hash: [in] /// name: [in] name for debugging - virtual bool getFile(std::string &filePath, const CHashKey &hash, const std::string &name = ""); + virtual bool getFile(std::string &filePath, const CHashKey &hash, const std::string &name = "") = 0; }; /* class IStreamedPackageProvider */