summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_shared_copy_on_write.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/cfx_shared_copy_on_write.h')
-rw-r--r--core/fxcrt/cfx_shared_copy_on_write.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/fxcrt/cfx_shared_copy_on_write.h b/core/fxcrt/cfx_shared_copy_on_write.h
index cd6cf6adc5..c87d96509d 100644
--- a/core/fxcrt/cfx_shared_copy_on_write.h
+++ b/core/fxcrt/cfx_shared_copy_on_write.h
@@ -56,6 +56,7 @@ class CFX_SharedCopyOnWrite {
class CountedObj : public ObjClass {
public:
template <typename... Args>
+ // NOLINTNEXTLINE(runtime/explicit)
CountedObj(Args... params) : ObjClass(params...), m_RefCount(0) {}
CountedObj(const CountedObj& src) : ObjClass(src), m_RefCount(0) {}