summaryrefslogtreecommitdiff
path: root/gee
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2018-03-27 12:46:26 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2018-03-27 13:12:02 +0200
commit55d883a5b593be366aff440ead4571ee76d86d02 (patch)
treebe85465984a784b0e553a1c15f6e9c91b257be3c /gee
parent7bd54c7a88555831febf186295cc44a7301aa83f (diff)
downloadvala-55d883a5b593be366aff440ead4571ee76d86d02.tar.gz
Drop trailing spaces/tabs
It was about time to do this.
Diffstat (limited to 'gee')
-rw-r--r--gee/timsort.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/gee/timsort.vala b/gee/timsort.vala
index e8efa2330..2db14fd3e 100644
--- a/gee/timsort.vala
+++ b/gee/timsort.vala
@@ -278,7 +278,7 @@ internal class Vala.TimSort<G> {
#endif
Slice<G> a = (owned) pending[index];
Slice<G> b = (owned) pending[index + 1];
-
+
assert (a.length > 0);
assert (b.length > 0);
assert (a.index + a.length == b.index);
@@ -648,7 +648,7 @@ internal class Vala.TimSort<G> {
this.index = index;
this.length = length;
}
-
+
~Slice () {
if (new_list != null)
free (new_list);