From 62d098ca1c6a7f69086d3f13d4a5813906a5d77c Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Wed, 1 Sep 2021 10:47:48 +0200 Subject: [PATCH] Added missing scope for ostream. --- tool/DataTypeHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/DataTypeHandler.h b/tool/DataTypeHandler.h index 90648957..64d03cfc 100644 --- a/tool/DataTypeHandler.h +++ b/tool/DataTypeHandler.h @@ -68,7 +68,7 @@ class DataTypeHandler static void outputData(std::ostream &, const DataType *, void *, size_t); - static void printRawData(ostream &, const uint8_t *, size_t); + static void printRawData(std::ostream &, const uint8_t *, size_t); private: static const DataType dataTypes[];