aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/libstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstate/libstate.h')
-rw-r--r--src/libstate/libstate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstate/libstate.h b/src/libstate/libstate.h
index 3ca97a53c..ac500b42f 100644
--- a/src/libstate/libstate.h
+++ b/src/libstate/libstate.h
@@ -28,6 +28,7 @@ class BOTAN_DLL Library_State
void initialize(bool thread_safe);
Algorithm_Factory& algo_factory();
+ Algorithm_Factory& algorithm_factory() { return algo_factory(); }
void add_engine(class Engine*);
@@ -110,7 +111,7 @@ class BOTAN_DLL Library_State
mutable Allocator* cached_default_allocator;
std::vector<Allocator*> allocators;
- Algorithm_Factory* algorithm_factory;
+ Algorithm_Factory* m_algorithm_factory;
};
/*************************************************