aboutsummaryrefslogtreecommitdiff
path: root/bin/tests/test_io.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-03-09 00:14:08 +0100
committerRémi Verschelde2016-03-09 00:14:08 +0100
commite46e43d2aaa6339a1675eb989f41885e745bf5c3 (patch)
treecf91f2869ff8f058c6682569fb31e22e5ee736ad /bin/tests/test_io.cpp
parent1dad6eca812e5c2e313b54265114de8a1d73d999 (diff)
parent4a4f2479146aa33e235ed57cde311efda68d3c8f (diff)
downloadgodot-e46e43d2aaa6339a1675eb989f41885e745bf5c3.tar.gz
godot-e46e43d2aaa6339a1675eb989f41885e745bf5c3.tar.zst
godot-e46e43d2aaa6339a1675eb989f41885e745bf5c3.zip
Merge pull request #3928 from Marqin/whitespace
remove trailing whitespace - sorry for the broken PRs, please rebase :)
Diffstat (limited to '')
-rw-r--r--bin/tests/test_io.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/bin/tests/test_io.cpp b/bin/tests/test_io.cpp
index a1eb2be19..a8e8d7d0f 100644
--- a/bin/tests/test_io.cpp
+++ b/bin/tests/test_io.cpp
@@ -47,37 +47,37 @@ namespace TestIO {
class TestMainLoop : public MainLoop {
-
-
+
+
bool quit;
-
+
public:
virtual void input_event(const InputEvent& p_event) {
-
-
+
+
}
virtual bool idle(float p_time) {
return false;
}
virtual void request_quit() {
-
+
quit=true;
-
+
}
virtual void init() {
quit=true;
}
virtual bool iteration(float p_time) {
-
+
return quit;
}
virtual void finish() {
-
+
}
-
-
+
+
};