diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2014-09-20 17:17:49 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2014-09-20 17:17:49 -0400 |
commit | 0fa128bbd0a53a3428fa2028b8754e15c9ef7c38 (patch) | |
tree | 30e2598a67f540e97cdbaf1cf7f5092b974d9d3c /src/dev | |
parent | b2c2e67468bba6dbbbfb6856ca94fdcfa1492258 (diff) | |
download | gem5-0fa128bbd0a53a3428fa2028b8754e15c9ef7c38.tar.xz |
base: Clean up redundant string functions and use C++11
This patch does a bit of housekeeping on the string helper functions
and relies on the C++11 standard library where possible. It also does
away with our custom string hash as an implementation is already part
of the standard library.
Diffstat (limited to 'src/dev')
-rw-r--r-- | src/dev/uart8250.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dev/uart8250.cc b/src/dev/uart8250.cc index dfaf9088d..40ee7d38f 100644 --- a/src/dev/uart8250.cc +++ b/src/dev/uart8250.cc @@ -36,7 +36,6 @@ #include <vector> #include "base/inifile.hh" -#include "base/str.hh" // for to_number #include "base/trace.hh" #include "config/the_isa.hh" #include "debug/Uart.hh" |