diff --git a/archive.d b/archive.d index 7ddcb07..fb228f9 100644 --- a/archive.d +++ b/archive.d @@ -3009,16 +3009,16 @@ static ELzma2State Lzma2Dec_UpdateState(CLzma2Dec *p, Byte b) else p.unpackSize = cast(UInt32)(p.control & 0x1F) << 16; return ELzma2State.LZMA2_STATE_UNPACK0; - + case ELzma2State.LZMA2_STATE_UNPACK0: p.unpackSize |= cast(UInt32)b << 8; return ELzma2State.LZMA2_STATE_UNPACK1; - + case ELzma2State.LZMA2_STATE_UNPACK1: p.unpackSize |= cast(UInt32)b; p.unpackSize++; return (LZMA2_IS_UNCOMPRESSED_STATE(p)) ? ELzma2State.LZMA2_STATE_DATA : ELzma2State.LZMA2_STATE_PACK0; - + case ELzma2State.LZMA2_STATE_PACK0: p.packSize = cast(UInt32)b << 8; return ELzma2State.LZMA2_STATE_PACK1; @@ -3090,7 +3090,7 @@ SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, SizeT destSizeCur = dicLimit - dicPos; SizeT srcSizeCur = inSize - *srcLen; ELzmaFinishMode curFinishMode = LZMA_FINISH_ANY; - + if (p.unpackSize <= destSizeCur) { destSizeCur = cast(SizeT)p.unpackSize; @@ -3141,7 +3141,7 @@ SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, bool initState = (mode > 0); if ((!initDic && p.needInitDic) || (!initState && p.needInitState)) return SRes.ERROR_DATA; - + LzmaDec_InitDicAndState(&p.decoder, initDic, initState); p.needInitDic = false; p.needInitState = false; @@ -3149,9 +3149,9 @@ SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, } if (srcSizeCur > p.packSize) srcSizeCur = cast(SizeT)p.packSize; - + res = LzmaDec_DecodeToDic(&p.decoder, dicPos + destSizeCur, src, &srcSizeCur, curFinishMode, status); - + src += srcSizeCur; *srcLen += srcSizeCur; p.packSize -= cast(UInt32)srcSizeCur; @@ -3238,7 +3238,7 @@ SRes Lzma2Decode(Byte *dest, SizeT *destLen, Byte *src, SizeT *srcLen, if(wtf != 0) return wtf; wtf = LzmaDec_AllocateProbs(&decoder.decoder, props.ptr, LZMA_PROPS_SIZE); if(wtf != 0) return wtf; - + *srcLen = inSize; res = Lzma2Dec_DecodeToDic(&decoder, outSize, src, srcLen, finishMode, status); *destLen = decoder.decoder.dicPos; diff --git a/characterencodings.d b/characterencodings.d index 96f7d29..770a5c1 100644 --- a/characterencodings.d +++ b/characterencodings.d @@ -228,7 +228,7 @@ immutable dchar[] Windows_1252 = [ // the following tables give the characters from decimal 160 up to 255 // in the given encodings. -immutable dchar[] ISO_8859_1 = [ +immutable dchar[] ISO_8859_1 = [ ' ', '¡', '¢', '£', '¤', '¥', '¦', '§', '¨', '©', 'ª', '«', '¬', '', '®', '¯', '°', '±', '²', '³', '´', 'µ', '¶', '·', @@ -242,7 +242,7 @@ immutable dchar[] ISO_8859_1 = [ 'ð', 'ñ', 'ò', 'ó', 'ô', 'õ', 'ö', '÷', 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'þ', 'ÿ']; -immutable dchar[] ISO_8859_2 = [ +immutable dchar[] ISO_8859_2 = [ ' ', 'Ą', '˘', 'Ł', '¤', 'Ľ', 'Ś', '§', '¨', 'Š', 'Ş', 'Ť', 'Ź', '', 'Ž', 'Ż', '°', 'ą', '˛', 'ł', '´', 'ľ', 'ś', 'ˇ', @@ -256,7 +256,7 @@ immutable dchar[] ISO_8859_2 = [ 'đ', 'ń', 'ň', 'ó', 'ô', 'ő', 'ö', '÷', 'ř', 'ů', 'ú', 'ű', 'ü', 'ý', 'ţ', '˙']; -immutable dchar[] ISO_8859_3 = [ +immutable dchar[] ISO_8859_3 = [ ' ', 'Ħ', '˘', '£', '¤', ' ', 'Ĥ', '§', '¨', 'İ', 'Ş', 'Ğ', 'Ĵ', '', ' ', 'Ż', '°', 'ħ', '²', '³', '´', 'µ', 'ĥ', '·', @@ -270,7 +270,7 @@ immutable dchar[] ISO_8859_3 = [ ' ', 'ñ', 'ò', 'ó', 'ô', 'ġ', 'ö', '÷', 'ĝ', 'ù', 'ú', 'û', 'ü', 'ŭ', 'ŝ', '˙']; -immutable dchar[] ISO_8859_4 = [ +immutable dchar[] ISO_8859_4 = [ ' ', 'Ą', 'ĸ', 'Ŗ', '¤', 'Ĩ', 'Ļ', '§', '¨', 'Š', 'Ē', 'Ģ', 'Ŧ', '', 'Ž', '¯', '°', 'ą', '˛', 'ŗ', '´', 'ĩ', 'ļ', 'ˇ', @@ -284,7 +284,7 @@ immutable dchar[] ISO_8859_4 = [ 'đ', 'ņ', 'ō', 'ķ', 'ô', 'õ', 'ö', '÷', 'ø', 'ų', 'ú', 'û', 'ü', 'ũ', 'ū', '˙']; -immutable dchar[] ISO_8859_5 = [ +immutable dchar[] ISO_8859_5 = [ ' ', 'Ё', 'Ђ', 'Ѓ', 'Є', 'Ѕ', 'І', 'Ї', 'Ј', 'Љ', 'Њ', 'Ћ', 'Ќ', '', 'Ў', 'Џ', 'А', 'Б', 'В', 'Г', 'Д', 'Е', 'Ж', 'З', @@ -298,7 +298,7 @@ immutable dchar[] ISO_8859_5 = [ '№', 'ё', 'ђ', 'ѓ', 'є', 'ѕ', 'і', 'ї', 'ј', 'љ', 'њ', 'ћ', 'ќ', '§', 'ў', 'џ']; -immutable dchar[] ISO_8859_6 = [ +immutable dchar[] ISO_8859_6 = [ ' ', ' ', ' ', ' ', '¤', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '،', '', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', @@ -312,7 +312,7 @@ immutable dchar[] ISO_8859_6 = [ 'ِ', 'ّ', 'ْ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']; -immutable dchar[] ISO_8859_7 = [ +immutable dchar[] ISO_8859_7 = [ ' ', '‘', '’', '£', '€', '₯', '¦', '§', '¨', '©', 'ͺ', '«', '¬', '', ' ', '―', '°', '±', '²', '³', '΄', '΅', 'Ά', '·', @@ -326,7 +326,7 @@ immutable dchar[] ISO_8859_7 = [ 'π', 'ρ', 'ς', 'σ', 'τ', 'υ', 'φ', 'χ', 'ψ', 'ω', 'ϊ', 'ϋ', 'ό', 'ύ', 'ώ', ' ']; -immutable dchar[] ISO_8859_8 = [ +immutable dchar[] ISO_8859_8 = [ ' ', ' ', '¢', '£', '¤', '¥', '¦', '§', '¨', '©', '×', '«', '¬', '', '®', '¯', '°', '±', '²', '³', '´', 'µ', '¶', '·', @@ -341,7 +341,7 @@ immutable dchar[] ISO_8859_8 = [ // v v those are wrong 'ר', 'ש', 'ת', ' ', ' ', ' ', ' ', ' ']; // FIXME: those ones marked wrong are supposed to be left to right and right to left markers, not spaces. lol maybe it isn't wrong -immutable dchar[] ISO_8859_9 = [ +immutable dchar[] ISO_8859_9 = [ ' ', '¡', '¢', '£', '¤', '¥', '¦', '§', '¨', '©', 'ª', '«', '¬', '', '®', '¯', '°', '±', '²', '³', '´', 'µ', '¶', '·', @@ -355,7 +355,7 @@ immutable dchar[] ISO_8859_9 = [ 'ğ', 'ñ', 'ò', 'ó', 'ô', 'õ', 'ö', '÷', 'ø', 'ù', 'ú', 'û', 'ü', 'ı', 'ş', 'ÿ']; -immutable dchar[] ISO_8859_10 = [ +immutable dchar[] ISO_8859_10 = [ ' ', 'Ą', 'Ē', 'Ģ', 'Ī', 'Ĩ', 'Ķ', '§', 'Ļ', 'Đ', 'Š', 'Ŧ', 'Ž', '', 'Ū', 'Ŋ', '°', 'ą', 'ē', 'ģ', 'ī', 'ĩ', 'ķ', '·', @@ -369,7 +369,7 @@ immutable dchar[] ISO_8859_10 = [ 'ð', 'ņ', 'ō', 'ó', 'ô', 'õ', 'ö', 'ũ', 'ø', 'ų', 'ú', 'û', 'ü', 'ý', 'þ', 'ĸ']; -immutable dchar[] ISO_8859_11 = [ +immutable dchar[] ISO_8859_11 = [ ' ', 'ก', 'ข', 'ฃ', 'ค', 'ฅ', 'ฆ', 'ง', 'จ', 'ฉ', 'ช', 'ซ', 'ฌ', 'ญ', 'ฎ', 'ฏ', 'ฐ', 'ฑ', 'ฒ', 'ณ', 'ด', 'ต', 'ถ', 'ท', @@ -383,7 +383,7 @@ immutable dchar[] ISO_8859_11 = [ '๐', '๑', '๒', '๓', '๔', '๕', '๖', '๗', '๘', '๙', '๚', '๛', ' ', ' ', ' ', ' ']; -immutable dchar[] ISO_8859_13 = [ +immutable dchar[] ISO_8859_13 = [ ' ', '”', '¢', '£', '¤', '„', '¦', '§', 'Ø', '©', 'Ŗ', '«', '¬', '', '®', 'Æ', '°', '±', '²', '³', '“', 'µ', '¶', '·', @@ -397,7 +397,7 @@ immutable dchar[] ISO_8859_13 = [ 'š', 'ń', 'ņ', 'ó', 'ō', 'ő', 'ö', '÷', 'ų', 'ł', 'ś', 'ū', 'ü', 'ż', 'ž', '’']; -immutable dchar[] ISO_8859_14 = [ +immutable dchar[] ISO_8859_14 = [ ' ', 'Ḃ', 'ḃ', '£', 'Ċ', 'ċ', 'Ḋ', '§', 'Ẁ', '©', 'Ẃ', 'ḋ', 'Ỳ', '', '®', 'Ÿ', 'Ḟ', 'ḟ', 'Ġ', 'ġ', 'Ṁ', 'ṁ', '¶', 'Ṗ', @@ -411,7 +411,7 @@ immutable dchar[] ISO_8859_14 = [ 'ŵ', 'ñ', 'ò', 'ó', 'ô', 'ő', 'ö', 'ṫ', 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'ŷ', 'ÿ']; -immutable dchar[] ISO_8859_15 = [ +immutable dchar[] ISO_8859_15 = [ ' ', '¡', '¢', '£', '€', '¥', 'Š', '§', 'š', '©', 'ª', '«', '¬', '', '®', '¯', '°', '±', '²', '³', 'Ž', 'µ', '¶', '·', @@ -425,7 +425,7 @@ immutable dchar[] ISO_8859_15 = [ 'ð', 'ñ', 'ò', 'ó', 'ô', 'ő', 'ö', '÷', 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'þ', 'ÿ']; -immutable dchar[] ISO_8859_16 = [ +immutable dchar[] ISO_8859_16 = [ ' ', 'Ą', 'ą', 'Ł', '€', '„', 'Š', '§', 'š', '©', 'Ș', '«', 'Ź', '', 'ź', 'Ż', '°', '±', 'Č', 'ł', 'Ž', '”', '¶', '·', diff --git a/color.d b/color.d index 5e1131a..59d3caa 100644 --- a/color.d +++ b/color.d @@ -653,7 +653,7 @@ float srbgToLinear(float x) { // aka f_inv import core.stdc.math; if (x >= 0.04045) return powf((x + 0.055)/(1 + 0.055), 2.4); - else + else return x / 12.92; } @@ -904,7 +904,7 @@ double[3] toHsl(Color c, bool useWeightedLightness = false) nothrow pure @truste H += 360; } - return [H, S, L]; + return [H, S, L]; } /// . diff --git a/com.d b/com.d index 070e2ee..e70f433 100644 --- a/com.d +++ b/com.d @@ -424,7 +424,7 @@ T getFromVariant(T)(VARIANT arg) { if(SUCCEEDED(hr)) { scope(exit) SafeArrayUnlock(a); - // BTW this is where things get interesting with the + // BTW this is where things get interesting with the // mid-level wrapper. it can avoid these copies // maybe i should check bounds.lLbound too..... diff --git a/database_generation.d b/database_generation.d index ea14387..f610422 100644 --- a/database_generation.d +++ b/database_generation.d @@ -915,7 +915,7 @@ string toFieldName(T)(string s, bool isPlural = false) In conclusion, children is nice in that its simple, doesn't require mixins to create extra symbols(functions). However it doesn't handle the one in one-to-many relationships at all, and it also doesn't work in tables with more than one relationship to a table. And finally, you might prefer the syntax of `prof.get_courses(db)` over `prof.children!(Course, Professor).execute(db)`. - Examples: + Examples: --- Struct Role { int id; } diff --git a/dbus.d b/dbus.d index d04d177..af398bb 100644 --- a/dbus.d +++ b/dbus.d @@ -99,7 +99,7 @@ template VariantType(T) { template allCanDBus(TS...) { static if (TS.length == 0) { - enum allCanDBus = true; + enum allCanDBus = true; } else static if(!canDBus!(TS[0])) { enum allCanDBus = false; } else { @@ -199,7 +199,7 @@ string typeSig(T)() if(canDBus!T) { string sig = "("; foreach(i, S; T.Types) { sig ~= typeSig!S(); - } + } sig ~= ")"; return sig; } else static if(isInputRange!T) { diff --git a/engine.d b/engine.d index d9297d0..abf63ff 100644 --- a/engine.d +++ b/engine.d @@ -405,7 +405,7 @@ class Engine{ if(SDLNet_TCP_Recv(clientsock, data.ptr, 16) <= 0) throw new Exception("Server closed the connection"); - int lagAmount = SDLNet_Read32(data.ptr); + int lagAmount = SDLNet_Read32(data.ptr); int delayAmount = SDLNet_Read32(data.ptr + 4); numberOfPlayers = SDLNet_Read32(data.ptr+8); @@ -1196,7 +1196,7 @@ extern(C){ int SDLNet_SocketReady(void* sock) { SDLNet_GenericSocket s = cast(SDLNet_GenericSocket)sock; - return sock != cast(TCPsocket)0 && s.ready; + return sock != cast(TCPsocket)0 && s.ready; } diff --git a/exception.d b/exception.d index efcc897..c39116c 100644 --- a/exception.d +++ b/exception.d @@ -44,24 +44,24 @@ mixin template ThrowableBaseImplementation() { } override void toString(scope void delegate(in char[]) sink) const { - char[32] tmpBuff = void; + char[32] tmpBuff = void; printName(sink); - sink("@"); sink(file); - sink("("); sink(line.sizeToTempString(tmpBuff[])); sink(")"); + sink("@"); sink(file); + sink("("); sink(line.sizeToTempString(tmpBuff[])); sink(")"); sink(": "); getHumanReadableMessage(sink); sink("\n"); printMembers(sink); - if (info) { - try { - sink("----------------"); - foreach (t; info) { - sink("\n"); sink(t); - } - } - catch (Throwable) { - // ignore more errors - } - } + if (info) { + try { + sink("----------------"); + foreach (t; info) { + sink("\n"); sink(t); + } + } + catch (Throwable) { + // ignore more errors + } + } } } @@ -91,7 +91,7 @@ mixin template PrintMembers() { static if(is(typeof(__traits(getMember, this, memberName)) : const(char)[])) sink(__traits(getMember, this, memberName)); else static if(is(typeof(__traits(getMember, this, memberName)) : long)) { - char[32] tmpBuff = void; + char[32] tmpBuff = void; sink(sizeToTempString(__traits(getMember, this, memberName), tmpBuff)); } // else pragma(msg, typeof(__traits(getMember, this, memberName))); sink("\n"); diff --git a/game.d b/game.d index b7fe832..5dc5209 100644 --- a/game.d +++ b/game.d @@ -1308,11 +1308,11 @@ final class OpenGlTexture { glColor4f(cast(float)bg.r/255.0, cast(float)bg.g/255.0, cast(float)bg.b/255.0, cast(float)bg.a / 255.0); glBindTexture(GL_TEXTURE_2D, _tex); - glBegin(GL_QUADS); + glBegin(GL_QUADS); glTexCoord2f(0, 0); glVertex2i(0, 0); - glTexCoord2f(texCoordWidth, 0); glVertex2i(width, 0); - glTexCoord2f(texCoordWidth, texCoordHeight); glVertex2i(width, height); - glTexCoord2f(0, texCoordHeight); glVertex2i(0, height); + glTexCoord2f(texCoordWidth, 0); glVertex2i(width, 0); + glTexCoord2f(texCoordWidth, texCoordHeight); glVertex2i(width, height); + glTexCoord2f(0, texCoordHeight); glVertex2i(0, height); glEnd(); glBindTexture(GL_TEXTURE_2D, 0); // unbind the texture diff --git a/html.d b/html.d index eb260fe..abd7457 100644 --- a/html.d +++ b/html.d @@ -315,14 +315,14 @@ Element checkbox(string name, string value, string label, bool checked = false) /++ Convenience function to create a small