From 93a33a8507bad8d27768a7ffd68340f04209d7e7 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 12 Nov 2017 08:30:02 +0100 Subject: [PATCH] Quotes in comment --- src/ifcparse/IfcHdf5File.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcparse/IfcHdf5File.cpp b/src/ifcparse/IfcHdf5File.cpp index d2efe93783..2def76e62d 100644 --- a/src/ifcparse/IfcHdf5File.cpp +++ b/src/ifcparse/IfcHdf5File.cpp @@ -2056,7 +2056,7 @@ void visit(instance_resolver& resolver, std::ostream& output, void* buffer, H5:: const char BOOLEAN[] = "BOOLEAN-"; const char LOGICAL[] = "LOGICAL-"; if (strstr(enum_value, BOOLEAN) || strstr(enum_value, LOGICAL)) { - // Hack to convert BOOLEAN-TRUE et al to T + // Hack to convert "BOOLEAN-TRUE" et al to "T" // Boolean and logical are of the same length coincedentally enum_value[0] = enum_value[strlen(BOOLEAN)]; enum_value[1] = 0;