diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-10-18 14:27:37 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-10-18 14:27:37 -0400 |
| commit | 5ef758bbd412100db694565986330f48614e24ba (patch) | |
| tree | 731314dfd102c94bc79a2804f73cae17e76c5589 /node | |
| parent | ca93b4a1ac9d07ea150572801fd47f9a0818abff (diff) | |
| download | infinitytier-5ef758bbd412100db694565986330f48614e24ba.tar.gz infinitytier-5ef758bbd412100db694565986330f48614e24ba.zip | |
Eliminate unused private field (compiler warning).
Diffstat (limited to 'node')
| -rw-r--r-- | node/SysEnv.cpp | 3 | ||||
| -rw-r--r-- | node/SysEnv.hpp | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/node/SysEnv.cpp b/node/SysEnv.cpp index 3fb2c872..19b64296 100644 --- a/node/SysEnv.cpp +++ b/node/SysEnv.cpp @@ -62,8 +62,7 @@ namespace ZeroTier { -SysEnv::SysEnv(const RuntimeEnvironment *renv) : - _r(renv) +SysEnv::SysEnv(const RuntimeEnvironment *renv) { } diff --git a/node/SysEnv.hpp b/node/SysEnv.hpp index 21c25713..c43e6adf 100644 --- a/node/SysEnv.hpp +++ b/node/SysEnv.hpp @@ -49,9 +49,6 @@ public: * @return Fingerprint of currently running network environment */ uint64_t getNetworkConfigurationFingerprint(); - -private: - const RuntimeEnvironment *_r; }; } // namespace ZeroTier |
