ext: Bump DRAMPower to avoid compilation issues
This patch bumps DRAMPower to commit 19433a6897ede4bbb19b06694faa8589b5a6569a which contains a small fix for clang, and a work-around for LTO with gcc 4.6.
This commit is contained in:
parent
29dd2887f4
commit
b976496a34
2 changed files with 2 additions and 2 deletions
|
@ -159,6 +159,7 @@ class MemCommand {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert(false); // Unknown name.
|
assert(false); // Unknown name.
|
||||||
|
return NOP; // For clang compilation
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -54,8 +54,7 @@ throw(std::runtime_error)
|
||||||
T t;
|
T t;
|
||||||
|
|
||||||
if (!(is >> f >> t)) {
|
if (!(is >> f >> t)) {
|
||||||
throw std::runtime_error("Cannot convert '" + s + "' to " +
|
throw std::runtime_error("fromString cannot convert " + s);
|
||||||
typeid(t).name() + " using fromString");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return t;
|
return t;
|
||||||
|
|
Loading…
Reference in a new issue