summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/enumstore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/enumstore.cpp b/searchlib/src/vespa/searchlib/attribute/enumstore.cpp
index 3a8f1ad8de5..19076cc8db7 100644
--- a/searchlib/src/vespa/searchlib/attribute/enumstore.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/enumstore.cpp
@@ -45,7 +45,7 @@ printEntry(vespalib::asciistream & os, const Entry & e) const
float _asFloat;
} u;
u._asFloat = e.getValue();
- os << ", bvalue: 0x" << std::hex << u._asInt;
+ os << ", bvalue: 0x" << vespalib::hex << u._asInt;
os << "}";
}
@@ -65,7 +65,7 @@ printEntry(vespalib::asciistream & os, const Entry & e) const
double _asDouble;
} u;
u._asDouble = e.getValue();
- os << ", bvalue: 0x" << std::hex << u._asLong;
+ os << ", bvalue: 0x" << vespalib::hex << u._asLong;
os << "}";
}