Oops we needed _r in there...

This commit is contained in:
Adam Ierymenko 2013-10-18 15:00:55 -04:00
parent 5ef758bbd4
commit fb7d9b1029
2 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,8 @@
namespace ZeroTier {
SysEnv::SysEnv(const RuntimeEnvironment *renv)
SysEnv::SysEnv(const RuntimeEnvironment *renv) :
_r(renv)
{
}

View File

@ -49,6 +49,9 @@ public:
* @return Fingerprint of currently running network environment
*/
uint64_t getNetworkConfigurationFingerprint();
private:
const RuntimeEnvironment *_r;
};
} // namespace ZeroTier