From a1b64080d1525a7a65e53f33d1a3fd257957e732 Mon Sep 17 00:00:00 2001 From: Gabriele Contini <contini.mailing@gmail.com> Date: 周日, 15 3月 2020 11:00:39 +0800 Subject: [PATCH] fix compilation errors --- src/library/LicenseReader.hpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/library/LicenseReader.hpp b/src/library/LicenseReader.hpp index de3bfa0..854a0d6 100644 --- a/src/library/LicenseReader.hpp +++ b/src/library/LicenseReader.hpp @@ -24,6 +24,7 @@ const std::string license_signature; const std::string source; const std::string m_project; + unsigned int m_magic; std::map<std::string, std::string> m_limits; FullLicenseInfo(const std::string& source, const std::string& product, const std::string& license_signature); @@ -55,7 +56,7 @@ public: LicenseReader(const LicenseLocation* licenseLocation); - EventRegistry readLicenses(const std::string& product, std::vector<FullLicenseInfo>& licenseInfoOut); + EventRegistry readLicenses(const std::string& product, std::vector<FullLicenseInfo>& licenseInfoOut) const; virtual ~LicenseReader(); }; } // namespace license -- Gitblit v1.9.1