summaryrefslogtreecommitdiff
path: root/ccode/valaccodeincludedirective.vala
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 /ccode/valaccodeincludedirective.vala
parent7bd54c7a88555831febf186295cc44a7301aa83f (diff)
downloadvala-55d883a5b593be366aff440ead4571ee76d86d02.tar.gz
Drop trailing spaces/tabs
It was about time to do this.
Diffstat (limited to 'ccode/valaccodeincludedirective.vala')
-rw-r--r--ccode/valaccodeincludedirective.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/ccode/valaccodeincludedirective.vala b/ccode/valaccodeincludedirective.vala
index 549e3f751..184185d95 100644
--- a/ccode/valaccodeincludedirective.vala
+++ b/ccode/valaccodeincludedirective.vala
@@ -30,18 +30,18 @@ public class Vala.CCodeIncludeDirective : CCodeNode {
* The file to be included.
*/
public string filename { get; set; }
-
+
/**
* Specifies whether the specified file should be searched in the local
* directory.
*/
public bool local { get; set; }
-
+
public CCodeIncludeDirective (string _filename, bool _local = false) {
filename = _filename;
local = _local;
}
-
+
public override void write (CCodeWriter writer) {
writer.write_indent ();
writer.write_string ("#include ");