From 59ddab35118f4278fa098d264d0bd5015dc1a661 Mon Sep 17 00:00:00 2001 From: rjawor Date: Tue, 12 Nov 2013 16:58:18 +0100 Subject: [PATCH] hash generator stub --- Doxyfile.in | 15 --------------- concordia/CMakeLists.txt | 1 + concordia/concordia.hpp | 1 - 3 files changed, 1 insertion(+), 16 deletions(-) diff --git a/Doxyfile.in b/Doxyfile.in index ab397b8..e4162a6 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -310,21 +310,6 @@ INLINE_SIMPLE_STRUCTS = NO TYPEDEF_HIDES_STRUCT = NO -# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to -# determine which symbols to keep in memory and which to flush to disk. -# When the cache is full, less often used symbols will be written to disk. -# For small to medium size projects (<1000 input files) the default value is -# probably good enough. For larger projects a too small cache size can cause -# doxygen to be busy swapping symbols to and from disk most of the time -# causing a significant performance penalty. -# If the system has enough physical memory increasing the cache will improve the -# performance by keeping more symbols in memory. Note that the value works on -# a logarithmic scale so increasing the size by one will roughly double the -# memory usage. The cache size is given by this formula: -# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, -# corresponding to a cache size of 2^16 = 65536 symbols. - -SYMBOL_CACHE_SIZE = 0 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given diff --git a/concordia/CMakeLists.txt b/concordia/CMakeLists.txt index f54eab8..1278e24 100644 --- a/concordia/CMakeLists.txt +++ b/concordia/CMakeLists.txt @@ -6,6 +6,7 @@ foreach(dir ${ALL_DIRECTORIES}) endforeach(dir) add_library(concordia SHARED + hash_generator.cpp concordia.cpp concordia_config.cpp concordia_exception.cpp diff --git a/concordia/concordia.hpp b/concordia/concordia.hpp index 36e8780..e735351 100644 --- a/concordia/concordia.hpp +++ b/concordia/concordia.hpp @@ -28,7 +28,6 @@ public: */ std::string & getVersion(); - private: static std::string _libraryVersion;