X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/29895f4c7abb19a67b0ede58ae4f7d403023e171..37324ea9b8c06d96b9383be993da02a01f103253:/projects/stargazer/plugins/other/smux/utils.h?ds=sidebyside

diff --git a/projects/stargazer/plugins/other/smux/utils.h b/projects/stargazer/plugins/other/smux/utils.h
index 52a3988b..66724e94 100644
--- a/projects/stargazer/plugins/other/smux/utils.h
+++ b/projects/stargazer/plugins/other/smux/utils.h
@@ -1,11 +1,13 @@
-#ifndef __UTILS_H__
-#define __UTILS_H__
-
-#include <string>
+#pragma once
 
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wold-style-cast"
 #include "stg/OBJECT_IDENTIFIER.h"
 #include "stg/SMUX-PDUs.h"
 #include "stg/GetResponse-PDU.h"
+#pragma GCC diagnostic pop
+
+#include <string>
 
 bool String2OI(const std::string & str, OBJECT_IDENTIFIER_t * oi);
 bool SendOpenPDU(int fd);
@@ -17,5 +19,3 @@ bool SendGetResponseErrorPDU(int fd,
                              const PDU_t * getRequest,
                              int errorStatus,
                              int errorIndex);
-
-#endif