From: Ali Saidi <Ali.Saidi@ARM.com>
Date: Fri, 15 Feb 2013 22:40:08 +0000 (-0500)
Subject: cpu: include set in o3/commit_impl.
X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44120460411b97bf084fb24a669bd5e600601cb5;p=gem5.git

cpu: include set in o3/commit_impl.

While the majority of compilers seemed to pickup set from else where,
one version of gcc 4.7 complains, so explictly add it.
---

diff --git a/src/cpu/o3/commit_impl.hh b/src/cpu/o3/commit_impl.hh
index 6ac946ac1..776968f8c 100644
--- a/src/cpu/o3/commit_impl.hh
+++ b/src/cpu/o3/commit_impl.hh
@@ -42,6 +42,7 @@
  */
 
 #include <algorithm>
+#include <set>
 #include <string>
 
 #include "arch/utility.hh"