fix: astvisitor fixes
* renaming files * fix typo * clang waringns
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user