fix(composition): removed old py structure

This commit is contained in:
2025-04-30 11:41:52 -04:00
parent a27b9da464
commit 36f2413683
3 changed files with 1 additions and 3 deletions

View File

@@ -9,13 +9,12 @@ composition_headers = files(
dependencies = [ dependencies = [
probe_dep, probe_dep,
config_dep,
quill_dep, quill_dep,
species_weight_dep species_weight_dep
] ]
# Define the libcomposition library so it can be linked against by other parts of the build system # Define the libcomposition library so it can be linked against by other parts of the build system
libcomposition = static_library('composition', libcomposition = library('composition',
composition_sources, composition_sources,
include_directories: include_directories('public'), include_directories: include_directories('public'),
cpp_args: ['-fvisibility=default'], cpp_args: ['-fvisibility=default'],

View File

@@ -190,7 +190,6 @@ namespace composition{
*/ */
class Composition { class Composition {
private: private:
Config& m_config = Config::getInstance();
Probe::LogManager& m_logManager = Probe::LogManager::getInstance(); Probe::LogManager& m_logManager = Probe::LogManager::getInstance();
quill::Logger* m_logger = m_logManager.getLogger("log"); quill::Logger* m_logger = m_logManager.getLogger("log");