From b11aba150a8fc7ba5c5b6524b94abc196445f032 Mon Sep 17 00:00:00 2001 From: Jack Kalish Date: Thu, 20 Jan 2022 10:12:36 -0500 Subject: [PATCH] add std namespace to variable declarations need to add the std namespace here, otherwise it does not compile on Linux --- src/ofxWatchdog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ofxWatchdog.cpp b/src/ofxWatchdog.cpp index 53a5bc1..2e5e285 100755 --- a/src/ofxWatchdog.cpp +++ b/src/ofxWatchdog.cpp @@ -329,8 +329,8 @@ void ofxWatchdog::child(void) FILE* fp; char* ap; size_t as; - vector args; - vector argp; + std::vector args; + std::vector argp; #endif ::snprintf(temp, sizeof(temp), "%d:%d:%d:%d", ::getpid(), g_pfd, g_override, g_verbose);