fix: astvisitor fixes

* renaming files
* fix typo
* clang waringns
This commit is contained in:
Andreas Stallinger
2016-11-03 12:38:36 +01:00
parent 5b47d195ff
commit 98869e51a5
9 changed files with 19 additions and 17 deletions
+2 -2
View File
@@ -165,12 +165,12 @@ void ApplicationSettings::setLoggingEnabled(bool value)
setValue<bool>("application/logging_enabled", value);
}
bool ApplicationSettings::getVerboseInderxerLoggingEnabled() const
bool ApplicationSettings::getVerboseIndexerLoggingEnabled() const
{
return getValue<bool>("application/verbose_indexer_logging_enabled", false);
}
void ApplicationSettings::setVerboseInderxerLoggingEnabled(bool value)
void ApplicationSettings::setVerboseIndexerLoggingEnabled(bool value)
{
setValue<bool>("application/verbose_indexer_logging_enabled", value);
}
+2 -2
View File
@@ -50,8 +50,8 @@ public:
bool getLoggingEnabled() const;
void setLoggingEnabled(bool loggingEnabled);
bool getVerboseInderxerLoggingEnabled() const;
void setVerboseInderxerLoggingEnabled(bool loggingEnabled);
bool getVerboseIndexerLoggingEnabled() const;
void setVerboseIndexerLoggingEnabled(bool loggingEnabled);
// indexing
int getIndexerThreadCount() const;
@@ -2,15 +2,15 @@
ReaderWriterLock::ReaderWriterLock()
: m_readerCount(0)
, m_allowedWriters(1)
, m_allowedReaders(1)
, m_allowedWriters(1)
{
}
ReaderWriterLock::ReaderWriterLock(const ReaderWriterLock &lock)
: m_readerCount(0)
, m_allowedWriters(1)
, m_allowedReaders(1)
, m_allowedWriters(1)
{
}