Fixes to enable compilation under clang-7.

Signed-off-by: Keith Rothman <[email protected]>
This commit is contained in:
Keith Rothman
2019-10-14 21:33:23 -07:00
parent 7d51518018
commit 1830202f7d
2 changed files with 7 additions and 0 deletions
@@ -19,6 +19,7 @@ class Architecture {
public:
using Container = absl::variant<Series7>;
virtual const std::string& name() const = 0;
virtual ~Architecture() {}
};
class Series7 : public Architecture {