aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/math/numbertheory/pow_mod.h
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2015-08-21 14:54:12 +0200
committerSimon Warta <[email protected]>2015-08-21 14:54:12 +0200
commita063dbe048a7434863de9b3bdf03d9f1409dbca4 (patch)
tree57e519f8bcf1237e44e1a0e05bbecb15d79f4e52 /src/lib/math/numbertheory/pow_mod.h
parenta287a1afbc6df84c6128614c4f0d43d856394d66 (diff)
Add m_ prefix to member variable Power_Mod::m_core
Diffstat (limited to 'src/lib/math/numbertheory/pow_mod.h')
-rw-r--r--src/lib/math/numbertheory/pow_mod.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/numbertheory/pow_mod.h b/src/lib/math/numbertheory/pow_mod.h
index 9a827562e..4f94fd62d 100644
--- a/src/lib/math/numbertheory/pow_mod.h
+++ b/src/lib/math/numbertheory/pow_mod.h
@@ -63,7 +63,7 @@ class BOTAN_DLL Power_Mod
Power_Mod(const Power_Mod&);
virtual ~Power_Mod();
private:
- mutable Modular_Exponentiator* core;
+ mutable Modular_Exponentiator* m_core;
};
/**