summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jamroot.jam2
-rw-r--r--gentoobrowse-api/service/utils/ebuildCacheParser.h2
-rw-r--r--gentoobrowse-api/service/utils/entityWhereFilter.h2
3 files changed, 4 insertions, 2 deletions
diff --git a/Jamroot.jam b/Jamroot.jam
index 3b7d75a..b2c866c 100644
--- a/Jamroot.jam
+++ b/Jamroot.jam
@@ -19,6 +19,8 @@ project
<variant>debug:<warnings-as-errors>on
<variant>coverage:<coverage>on
<toolset>tidy:<define>ICE_IGNORE_VERSION
+ <toolset>tidy:<exclude>cxxstd-17-iso/maintenance.h
+ <toolset>tidy:<exclude>unpackPqTextArray.cpp
;
build-project gentoobrowse-api ;
diff --git a/gentoobrowse-api/service/utils/ebuildCacheParser.h b/gentoobrowse-api/service/utils/ebuildCacheParser.h
index 1573439..e881e53 100644
--- a/gentoobrowse-api/service/utils/ebuildCacheParser.h
+++ b/gentoobrowse-api/service/utils/ebuildCacheParser.h
@@ -14,7 +14,7 @@ namespace Gentoo {
public:
typedef std::map<std::string_view, const std::string_view> KVs;
- EbuildCacheParser(const std::filesystem::path & p);
+ explicit EbuildCacheParser(const std::filesystem::path & p);
std::optional<Glib::ustring> get(const std::string & key) const;
std::optional<std::string_view> getRange(const std::string & key) const;
diff --git a/gentoobrowse-api/service/utils/entityWhereFilter.h b/gentoobrowse-api/service/utils/entityWhereFilter.h
index 805e033..0c172dd 100644
--- a/gentoobrowse-api/service/utils/entityWhereFilter.h
+++ b/gentoobrowse-api/service/utils/entityWhereFilter.h
@@ -10,7 +10,7 @@ namespace Gentoo {
public:
typedef std::set<T> EntityIds;
- EntityWhereFilter(const std::string & en);
+ explicit EntityWhereFilter(const std::string & en);
EntityWhereFilter(const std::string & en, const T & e);
EntityWhereFilter(const std::string & en, const EntityIds & e);