From 4d14448bbffa823018a3e1382bebb73b00d9c8a5 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 5 Dec 2010 22:58:05 +0000 Subject: [PATCH] * CppSpecWriter.cs: Fixed indentation for #if-#endif directives. --- Source/Bind/CppSpecWriter.cs | 65 ++++++++++++++++++++++++++---------- 1 file changed, 48 insertions(+), 17 deletions(-) diff --git a/Source/Bind/CppSpecWriter.cs b/Source/Bind/CppSpecWriter.cs index 226a084d..9c7effab 100644 --- a/Source/Bind/CppSpecWriter.cs +++ b/Source/Bind/CppSpecWriter.cs @@ -136,6 +136,12 @@ namespace Bind last_delegate = null; foreach (var current in new IEnumerable[] { forward_compatible, deprecated }) { + if (current == deprecated) + { + sw.WriteLine("#ifdef {0}", AllowDeprecated); + sw.Indent(); + } + foreach (var function in current) { if (function.WrappedDelegate == last_delegate) @@ -148,11 +154,13 @@ namespace Bind sw.WriteLine("{0}::{1}::Delegates::p{2} {0}::{1}::Delegates::{2} = 0;", Settings.GLClass, function.Extension, function.Name); } - sw.WriteLine("#ifdef {0}", AllowDeprecated); - sw.Indent(); + + if (current == deprecated) + { + sw.Unindent(); + sw.WriteLine("#endif"); + } } - sw.Unindent(); - sw.WriteLine("#endif"); } sw.WriteLine(); @@ -173,6 +181,12 @@ namespace Bind foreach (var current in new IEnumerable[] { forward_compatible, deprecated }) { + if (current == deprecated) + { + sw.WriteLine("#ifdef {0}", AllowDeprecated); + sw.Indent(); + } + last_delegate = null; foreach (var function in wrappers[ext]) { @@ -183,12 +197,13 @@ namespace Bind sw.WriteLine("{0}::Delegates::{1} = ({0}::Delegates::p{1})GetAddress(\"gl{1}\");", path, function.WrappedDelegate.Name); } - sw.WriteLine("#ifdef {0}", AllowDeprecated); - sw.Indent(); - } - sw.Unindent(); - sw.WriteLine("#endif"); + if (current == deprecated) + { + sw.Unindent(); + sw.WriteLine("#endif"); + } + } sw.Unindent(); sw.WriteLine("}"); } @@ -256,17 +271,25 @@ namespace Bind sw.Indent(); foreach (var current in new IEnumerable[] { forward_compatible, deprecated }) { + if (current == deprecated) + { + sw.WriteLine("#ifdef {0}", AllowDeprecated); + sw.Indent(); + } + last_delegate = null; foreach (var f in current) { WriteDelegate(sw, f.WrappedDelegate, ref last_delegate); } - sw.WriteLine("#ifdef {0}", AllowDeprecated); - sw.Indent(); + + if (current == deprecated) + { + sw.Unindent(); + sw.WriteLine("#endif"); + } } sw.Unindent(); - sw.WriteLine("#endif"); - sw.Unindent(); sw.WriteLine("};"); // Write wrappers @@ -274,6 +297,12 @@ namespace Bind sw.WriteLine("static void Init();"); foreach (var current in new IEnumerable[] { forward_compatible, deprecated }) { + if (current == deprecated) + { + sw.WriteLine("#ifdef {0}", AllowDeprecated); + sw.Indent(); + } + last_delegate = null; foreach (var f in current) { @@ -292,11 +321,13 @@ namespace Bind sw.Unindent(); sw.WriteLine("}"); } - sw.WriteLine("#ifdef {0}", AllowDeprecated); - sw.Indent(); + + if (current == deprecated) + { + sw.Unindent(); + sw.WriteLine("#endif"); + } } - sw.Unindent(); - sw.WriteLine("#endif"); if (extension != "Core") {