src: Fixed clang warnings

This commit is contained in:
Eberhard Graether
2018-09-18 10:56:56 +02:00
parent 5517cd4ccf
commit 9f453ef376
4 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -20,7 +20,7 @@
* CXX_TEST_DIR - .../cxxtest-4.3
* CLANG_DIR - .../clang-llvm
* BOOST_DIR - .../boost_1_64_0
* BOOST_DIR - .../boost_1_68_0
* BOTAN_DIR - .../Botan-2.1.0
For MacOS and Linux
+1 -1
View File
@@ -31,11 +31,11 @@ TaskBuildIndex::TaskBuildIndex(
, m_appUUID(appUUID)
, m_multiProcessIndexing(multiProcessIndexing)
, m_interprocessIndexingStatusManager(appUUID, 0, true)
, m_indexerCommandQueueStopped(false)
, m_processCount(processCount)
, m_interrupted(false)
, m_indexingFileCount(0)
, m_runningThreadCount(0)
, m_indexerCommandQueueStopped(false)
{
}
@@ -3,6 +3,7 @@
#include <map>
#include <set>
#include <string>
#include <unordered_map>
#include "data/indexer/IndexerCommandProvider.h"
+1 -1
View File
@@ -16,7 +16,7 @@ namespace
{
struct IncludeDirectiveComparator
{
bool operator()(const IncludeDirective& a, const IncludeDirective& b)
bool operator()(const IncludeDirective& a, const IncludeDirective& b) const
{
return a.getIncludedFile() < b.getIncludedFile();
}