diff options
author | 2020-04-29 11:40:24 +0000 | |
---|---|---|
committer | 2020-04-29 11:40:24 +0000 | |
commit | 9f9563f17ac752a440beeec978f13c6cbbd2dcea (patch) | |
tree | 526440432532b720de6f257640da4af38b9af3e2 | |
parent | 2364bc40090f0cfc53484cfb82f836a3a50ebcb7 (diff) | |
parent | aa76d1e445eea2b7c1a8a8adcf788345f34515a7 (diff) |
Merge "Make single arg constructor explicit" into rvc-dev
-rw-r--r-- | jni/node-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jni/node-inl.h b/jni/node-inl.h index e9b63bbf4..c238fc856 100644 --- a/jni/node-inl.h +++ b/jni/node-inl.h @@ -72,7 +72,7 @@ class node; // can assert that we only ever return an active node in response to a lookup. class NodeTracker { public: - NodeTracker(std::recursive_mutex* lock) : lock_(lock) {} + explicit NodeTracker(std::recursive_mutex* lock) : lock_(lock) {} void CheckTracked(__u64 ino) const { if (kEnableInodeTracking) { |