diff options
author | Nathan Binkert <nate@binkert.org> | 2010-03-22 18:43:53 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-03-22 18:43:53 -0700 |
commit | 5ab13e2deb8f904ef2a233749193fa09ea7013c4 (patch) | |
tree | 07f5f02902f9e719fe58d1a9419b5a1d51f7a2ce /src/mem/ruby/libruby_internal.hh | |
parent | 2620e08722b38660658d46cdb76c337db18e877c (diff) | |
download | gem5-5ab13e2deb8f904ef2a233749193fa09ea7013c4.tar.xz |
ruby: style pass
Diffstat (limited to 'src/mem/ruby/libruby_internal.hh')
-rw-r--r-- | src/mem/ruby/libruby_internal.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mem/ruby/libruby_internal.hh b/src/mem/ruby/libruby_internal.hh index 9e821ba7c..c64814051 100644 --- a/src/mem/ruby/libruby_internal.hh +++ b/src/mem/ruby/libruby_internal.hh @@ -26,16 +26,16 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef LIBRUBY_INTERNAL_H -#define LIBRUBY_INTERNAL_H - -#include "mem/ruby/libruby.hh" +#ifndef __MEM_RUBY_LIBRUBY_INTERNAL_HH__ +#define __MEM_RUBY_LIBRUBY_INTERNAL_HH__ #include <ostream> #include <string> +#include "mem/ruby/libruby.hh" + std::string RubyRequestType_to_string(const RubyRequestType& obj); RubyRequestType string_to_RubyRequestType(std::string); std::ostream& operator<<(std::ostream& out, const RubyRequestType& obj); -#endif +#endif // __MEM_RUBY_LIBRUBY_INTERNAL_HH__ |