Fix compilation error with clang

This commit is contained in:
Thomas Goyne 2012-10-12 14:36:29 -07:00
parent ab47cfa1a5
commit 79ef194238
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ DEFINE_SIMPLE_EXCEPTION_NOINNER(MRUErrorIndexOutOfRange, MRUError, "mru/invalid"
class MRUManager {
public:
/// @brief Map for time->value pairs.
typedef std::list<const std::string> MRUListMap;
typedef std::list<std::string> MRUListMap;
/// @brief Constructor
/// @param config File to load MRU values from