diff options
author | archshift <gh@archshift.com> | 2015-08-25 20:12:59 -0700 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-08-25 20:12:59 -0700 |
commit | 4ad86a6f7889cba716d2a329d54cde09b250273c (patch) | |
tree | a7ae936b127245419e9d9be106de807c08df11e8 | |
parent | ac0104b8b0584023cfbd7a4800f1ca1db890188f (diff) | |
parent | e7ebb9d36cb55a17b0b7320b0b3d40657ea725cd (diff) |
Merge pull request #1073 from lioncash/guard
citra-qt: Add a missing header guard to util.h
-rw-r--r-- | src/citra_qt/util/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/citra_qt/util/util.h b/src/citra_qt/util/util.h index 0787f9eb7..98a944047 100644 --- a/src/citra_qt/util/util.h +++ b/src/citra_qt/util/util.h @@ -2,6 +2,8 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#pragma once + #include <QFont> /// Returns a QFont object appropriate to use as a monospace font for debugging widgets, etc. |