From fa5ed210ecae8b6586e8f5f927202a115083009c Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Sat, 11 May 2002 15:08:14 +0000 Subject: [PATCH] add explicit base class qualification to work around Intel C++ 6.0 bug [SVN r13820] --- test/ios_state_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ios_state_test.cpp b/test/ios_state_test.cpp index b23697b..4946ec4 100644 --- a/test/ios_state_test.cpp +++ b/test/ios_state_test.cpp @@ -36,9 +36,9 @@ public: {} protected: - virtual string_type do_truename() const + virtual base_type::string_type do_truename() const { return "eurt"; } - virtual string_type do_falsename() const + virtual base_type::string_type do_falsename() const { return "eslaf"; } };