From a8322ae7e797c4cb0186218bd81670cccd43cfb2 Mon Sep 17 00:00:00 2001 From: Larry Ruckman Date: Sat, 29 Jun 2024 09:08:25 -0700 Subject: [PATCH] resolving c++ linter Namespace should be terminated with '// namespace CRCPP' [readability/namespace] --- include/rogue/protocols/packetizer/CRC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rogue/protocols/packetizer/CRC.h b/include/rogue/protocols/packetizer/CRC.h index be930b550..d28cfdfb7 100644 --- a/include/rogue/protocols/packetizer/CRC.h +++ b/include/rogue/protocols/packetizer/CRC.h @@ -1658,7 +1658,7 @@ inline const CRC::Parameters& CRC::CRC_64() { #endif // CRCPP_INCLUDE_ESOTERIC_CRC_DEFINITIONS #ifdef CRCPP_USE_NAMESPACE -} +} //NOLINT #endif #endif // CRCPP_CRC_H_