aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zencore/include/zencore/compactbinary.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/zencore/include/zencore/compactbinary.h b/zencore/include/zencore/compactbinary.h
index c0cd07172..b546f97aa 100644
--- a/zencore/include/zencore/compactbinary.h
+++ b/zencore/include/zencore/compactbinary.h
@@ -366,7 +366,6 @@ public:
/** Whether the type is or may contain fields of any attachment type. */
static constexpr inline bool MayContainAttachments(CbFieldType Type)
{
- // The use of !! will suppress V792 from static analysis. Using //-V792 did not work.
return int(IsObject(Type) == true) | int(IsArray(Type) == true) | int(IsAttachment(Type) == true);
}
};