diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-09-21 00:21:23 +0900 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-09-21 11:15:47 +0900 |
commit | ebdae19fd226104baec712b9da9939ff82ef3c3a (patch) | |
tree | e046c0f562fc4400480b2e3257f140e973a9ce6a /src/citra_qt/util/spinbox.cpp | |
parent | 396a8d91a4423d9c793eeff0798d544613647511 (diff) |
Remove empty newlines in #include blocks.
This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation.
Diffstat (limited to 'src/citra_qt/util/spinbox.cpp')
-rw-r--r-- | src/citra_qt/util/spinbox.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/citra_qt/util/spinbox.cpp b/src/citra_qt/util/spinbox.cpp index 5868f3b91b..0bda215025 100644 --- a/src/citra_qt/util/spinbox.cpp +++ b/src/citra_qt/util/spinbox.cpp @@ -28,11 +28,10 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +#include "citra_qt/util/spinbox.h" +#include <cstdlib> #include <QLineEdit> #include <QRegExpValidator> -#include <cstdlib> - -#include "citra_qt/util/spinbox.h" #include "common/assert.h" CSpinBox::CSpinBox(QWidget* parent) |