From ac3517fc69c3dabaaef7de695fa0c75f24a78b6b Mon Sep 17 00:00:00 2001 From: Lane Roathe Date: Fri, 15 Nov 2019 18:08:15 -0800 Subject: [PATCH] Support UNUSED and put inttypes.h into system search pattern --- qasm.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/qasm.h b/qasm.h index 1cc8b2d..a9e0002 100644 --- a/qasm.h +++ b/qasm.h @@ -1,11 +1,16 @@ #pragma once -#include "inttypes.h" +#include + #include "palPoco.h" #include "pallogger.h" #include "eventtask.h" #include "baseapp.h" #include "httpserver.h" +#ifndef UNUSED +#define UNUSED (void) +#endif + #define CLASS PAL_APPCLASS using namespace PAL_NAMESPACE;