From b6b0878da807436cd99631ebecc982b31fca7cce Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Thu, 4 Aug 2011 10:10:03 +0100 Subject: [PATCH] Fix a (silly) warning under icc compiler No functional change. Signed-off-by: Marco Costalba --- src/ucioption.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ucioption.h b/src/ucioption.h index c764ac8b..d0d655cd 100644 --- a/src/ucioption.h +++ b/src/ucioption.h @@ -51,7 +51,7 @@ struct CaseInsensitiveLess { /// Our options container is actually a map with a customized c'tor -struct OptionsMap : std::map { +struct OptionsMap : public std::map { OptionsMap(); std::string print_all() const; }; -- 2.39.2