From 6df386f06ba50d6936755514f163cc7ea4d46033 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Mon, 20 Jan 2020 13:58:22 -0500 Subject: Fix namespace issue that fails on newer g++ The explicit reference to the std::__cxx11 namespace in high.hpp seems no longer required and triggers an error on newer versions of g++, remove it. Bug-AGL: SPEC-2932 Signed-off-by: Scott Murray Change-Id: Ib49e7faebbad246aa777129c401981a58352fec4 --- high-can-binding/high.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/high-can-binding/high.hpp b/high-can-binding/high.hpp index de3a471..4de0119 100644 --- a/high-can-binding/high.hpp +++ b/high-can-binding/high.hpp @@ -54,5 +54,5 @@ private: std::map> lowMessagesToObjects; std::set timers; std::string generateId() const; - json_object *generateJson(const std::string &messageObject, std::vector *fields = NULL); + json_object *generateJson(const std::string &messageObject, std::vector *fields = NULL); }; -- cgit 1.2.3-korg