minor style fixes

This commit is contained in:
Sebastian Wilzbach 2016-04-27 02:42:37 +03:00
parent ff298c710d
commit d1714c9afb
19 changed files with 36 additions and 41 deletions

View file

@ -1565,7 +1565,7 @@ int SQL_POSITION_TO()
) )
{ {
return SQLSetPos( hstmt, irow, SQL_POSITION, SQL_LOCK_NO_CHANGE ); return SQLSetPos( hstmt, irow, SQL_POSITION, SQL_LOCK_NO_CHANGE );
}; }
int SQL_LOCK_RECORD() int SQL_LOCK_RECORD()
( (

View file

@ -78,7 +78,7 @@ struct DATE_STRUCT
SQLSMALLINT year; SQLSMALLINT year;
SQLUSMALLINT month; SQLUSMALLINT month;
SQLUSMALLINT day; SQLUSMALLINT day;
}; }
alias DATE_STRUCT SQL_DATE_STRUCT; alias DATE_STRUCT SQL_DATE_STRUCT;
@ -87,7 +87,7 @@ struct TIME_STRUCT
SQLUSMALLINT hour; SQLUSMALLINT hour;
SQLUSMALLINT minute; SQLUSMALLINT minute;
SQLUSMALLINT second; SQLUSMALLINT second;
}; }
alias TIME_STRUCT SQL_TIME_STRUCT; alias TIME_STRUCT SQL_TIME_STRUCT;
@ -100,7 +100,7 @@ struct TIMESTAMP_STRUCT
SQLUSMALLINT minute; SQLUSMALLINT minute;
SQLUSMALLINT second; SQLUSMALLINT second;
SQLUINTEGER fraction; SQLUINTEGER fraction;
}; }
alias TIMESTAMP_STRUCT SQL_TIMESTAMP_STRUCT; alias TIMESTAMP_STRUCT SQL_TIMESTAMP_STRUCT;
@ -129,7 +129,7 @@ struct SQL_YEAR_MONTH_STRUCT
{ {
SQLUINTEGER year; SQLUINTEGER year;
SQLUINTEGER month; SQLUINTEGER month;
}; }
struct SQL_DAY_SECOND_STRUCT struct SQL_DAY_SECOND_STRUCT
{ {
@ -138,7 +138,7 @@ struct SQL_DAY_SECOND_STRUCT
SQLUINTEGER minute; SQLUINTEGER minute;
SQLUINTEGER second; SQLUINTEGER second;
SQLUINTEGER fraction; SQLUINTEGER fraction;
}; }
struct SQL_INTERVAL_STRUCT struct SQL_INTERVAL_STRUCT
{ {
@ -148,8 +148,8 @@ struct SQL_INTERVAL_STRUCT
union intval { union intval {
SQL_YEAR_MONTH_STRUCT year_month; SQL_YEAR_MONTH_STRUCT year_month;
SQL_DAY_SECOND_STRUCT day_second; SQL_DAY_SECOND_STRUCT day_second;
}; }
}; }
// * internal representation of numeric data type * // * internal representation of numeric data type *
const int SQL_MAX_NUMERIC_LEN = 16; const int SQL_MAX_NUMERIC_LEN = 16;
@ -159,7 +159,7 @@ struct SQL_NUMERIC_STRUCT
SQLSCHAR scale; SQLSCHAR scale;
SQLCHAR sign; /* 1 if positive, 0 if negative */ SQLCHAR sign; /* 1 if positive, 0 if negative */
SQLCHAR[ SQL_MAX_NUMERIC_LEN ] val; SQLCHAR[ SQL_MAX_NUMERIC_LEN ] val;
}; }
/* size is 16 */ /* size is 16 */
struct SQLGUID struct SQLGUID
@ -168,7 +168,7 @@ struct SQLGUID
WORD Data2; WORD Data2;
WORD Data3; WORD Data3;
ubyte[ 8 ] Data4; ubyte[ 8 ] Data4;
}; }
alias SQLGUID GUID; alias SQLGUID GUID;
alias uint BOOKMARK; alias uint BOOKMARK;

View file

@ -31,7 +31,7 @@ int execlpe(in char *, in char *,...);
//These constants are undefined elsewhere and only used in the deprecated part //These constants are undefined elsewhere and only used in the deprecated part
//of std.process. //of std.process.
enum { _P_WAIT, _P_NOWAIT, _P_OVERLAY }; enum { _P_WAIT, _P_NOWAIT, _P_OVERLAY }
//These declarations are defined for Posix in core.sys.posix.unistd but unused //These declarations are defined for Posix in core.sys.posix.unistd but unused
//from here. //from here.

View file

@ -1947,7 +1947,7 @@ private
assert( msg.convertsTo!(Tid) ); assert( msg.convertsTo!(Tid) );
auto tid = msg.get!(Tid); auto tid = msg.get!(Tid);
if ( bool* pDepends = (tid in thisInfo.links) ) if ( bool* pDepends = tid in thisInfo.links )
{ {
auto depends = *pDepends; auto depends = *pDepends;
thisInfo.links.remove( tid ); thisInfo.links.remove( tid );

View file

@ -20941,10 +20941,7 @@ assert(PosInfInterval!Date(Date(1996, 1, 2)).begin == Date(1996, 1, 2));
assert(!PosInfInterval!Date(Date(1996, 1, 2)).empty); assert(!PosInfInterval!Date(Date(1996, 1, 2)).empty);
-------------------- --------------------
+/ +/
@property bool empty() const pure nothrow @property enum bool empty = false;
{
return false;
}
/++ /++
@ -23133,10 +23130,7 @@ assert(NegInfInterval!Date(Date(2012, 3, 1)).end == Date(2012, 3, 1));
assert(!NegInfInterval!Date(Date(1996, 1, 2)).empty); assert(!NegInfInterval!Date(Date(1996, 1, 2)).empty);
-------------------- --------------------
+/ +/
@property bool empty() const pure nothrow @property enum bool empty = false;
{
return false;
}
/++ /++

View file

@ -1613,8 +1613,9 @@ unittest // Issue 14724
} }
catch(Exception e) catch(Exception e)
{ {
assert(false, "If the request for help was passed required options" enum errorMsg = "If the request for help was passed required options" ~
"must not be set."); "must not be set.";
assert(false, errorMsg);
} }
assert(rslt.helpWanted); assert(rslt.helpWanted);

View file

@ -742,7 +742,7 @@ public:
++evenbits; ++evenbits;
} }
if ((x.data.length- firstnonzero == 2)) if (x.data.length- firstnonzero == 2)
{ {
// Check for a single digit straddling a digit boundary // Check for a single digit straddling a digit boundary
BigDigit x1 = x.data[firstnonzero+1]; BigDigit x1 = x.data[firstnonzero+1];

View file

@ -24,8 +24,8 @@ public:
alias BigDigit = uint; // A Bignum is an array of BigDigits. alias BigDigit = uint; // A Bignum is an array of BigDigits.
// Limits for when to switch between multiplication algorithms. // Limits for when to switch between multiplication algorithms.
enum : int { KARATSUBALIMIT = 10 }; // Minimum value for which Karatsuba is worthwhile. enum int KARATSUBALIMIT = 10; // Minimum value for which Karatsuba is worthwhile.
enum : int { KARATSUBASQUARELIMIT=12 }; // Minimum value for which square Karatsuba is worthwhile enum int KARATSUBASQUARELIMIT = 12; // Minimum value for which square Karatsuba is worthwhile
/** Multi-byte addition or subtraction /** Multi-byte addition or subtraction

View file

@ -36,7 +36,7 @@ import std.traits : isArray;
struct DummyRange(ReturnBy _r, Length _l, RangeType _rt, T = uint[]) struct DummyRange(ReturnBy _r, Length _l, RangeType _rt, T = uint[])
if (isArray!T) if (isArray!T)
{ {
private enum uinttestData = private static immutable uinttestData =
[1U, 2U, 3U, 4U, 5U, 6U, 7U, 8U, 9U, 10U]; [1U, 2U, 3U, 4U, 5U, 6U, 7U, 8U, 9U, 10U];
// These enums are so that the template params are visible outside // These enums are so that the template params are visible outside
// this instantiation. // this instantiation.
@ -61,7 +61,7 @@ struct DummyRange(ReturnBy _r, Length _l, RangeType _rt, T = uint[])
// Workaround for DMD bug 4378 // Workaround for DMD bug 4378
static if (is(T == uint[])) static if (is(T == uint[]))
{ {
arr = uinttestData; arr = uinttestData.dup;
} }
} }

View file

@ -5056,7 +5056,7 @@ bool isSubnormal(X)(X x) @trusted pure nothrow @nogc
ushort e = F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT]; ushort e = F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT];
long* ps = cast(long *)&x; long* ps = cast(long *)&x;
return (e == 0 && return (e == 0 &&
(((ps[MANTISSA_LSB]|(ps[MANTISSA_MSB]& 0x0000_FFFF_FFFF_FFFF))) != 0)); ((ps[MANTISSA_LSB]|(ps[MANTISSA_MSB]& 0x0000_FFFF_FFFF_FFFF)) != 0));
} }
else static if (F.realFormat == RealFormat.ieeeExtended) else static if (F.realFormat == RealFormat.ieeeExtended)
{ {

View file

@ -1059,7 +1059,7 @@ unittest
/// ///
unittest unittest
{ {
enum REF = [0, 1, 2, 3]; static immutable REF = [0, 1, 2, 3];
foreach (I, V; aliasSeqOf!([0, 1, 2, 3])) foreach (I, V; aliasSeqOf!([0, 1, 2, 3]))
{ {
static assert(V == I); static assert(V == I);

View file

@ -3329,7 +3329,7 @@ private void toAStringz(in string[] a, const(char)**az)
// Incorporating idea (for spawnvp() on Posix) from Dave Fladebo // Incorporating idea (for spawnvp() on Posix) from Dave Fladebo
enum { _P_WAIT, _P_NOWAIT, _P_OVERLAY }; enum { _P_WAIT, _P_NOWAIT, _P_OVERLAY }
version(Windows) extern(C) int spawnvp(int, in char *, in char **); version(Windows) extern(C) int spawnvp(int, in char *, in char **);
alias P_WAIT = _P_WAIT; alias P_WAIT = _P_WAIT;
alias P_NOWAIT = _P_NOWAIT; alias P_NOWAIT = _P_NOWAIT;

View file

@ -581,7 +581,7 @@ unittest
{ {
char c; char c;
enum empty = false; enum empty = false;
void popFront(){}; void popFront(){}
ref char front() return @property ref char front() return @property
{ {
return c; return c;

View file

@ -163,7 +163,7 @@ module std.regex.internal.generator;
return app.data; return app.data;
} }
@property empty(){ return false; } @property enum empty = false;
void popFront() void popFront()
{ {

View file

@ -592,7 +592,7 @@ struct Input(Char)
{ {
import std.utf; import std.utf;
alias DataIndex = size_t; alias DataIndex = size_t;
enum { isLoopback = false }; enum bool isLoopback = false;
alias String = const(Char)[]; alias String = const(Char)[];
String _origin; String _origin;
size_t _index; size_t _index;
@ -641,7 +641,7 @@ struct BackLooperImpl(Input)
import std.utf; import std.utf;
alias DataIndex = size_t; alias DataIndex = size_t;
alias String = Input.String; alias String = Input.String;
enum { isLoopback = true }; enum bool isLoopback = true;
String _origin; String _origin;
size_t _index; size_t _index;
this(Input input, size_t index) this(Input input, size_t index)

View file

@ -4380,7 +4380,7 @@ unittest
assert(detabber(" \u2029\t".byChar, 9).array == " \u2029 "); assert(detabber(" \u2029\t".byChar, 9).array == " \u2029 ");
auto r = "hel\tx".byWchar.detabber(); auto r = "hel\tx".byWchar.detabber();
assert(r.front == 'h' && r.front == 'h'); assert(r.front == 'h');
auto s = r.save; auto s = r.save;
r.popFront(); r.popFront();
r.popFront(); r.popFront();

View file

@ -214,7 +214,7 @@ private
/* Demangles mstr as FuncAttrs. */ /* Demangles mstr as FuncAttrs. */
Demangle!uint demangleFunctionAttributes(string mstr) Demangle!uint demangleFunctionAttributes(string mstr)
{ {
enum LOOKUP_ATTRIBUTE = immutable LOOKUP_ATTRIBUTE =
[ [
'a': FunctionAttribute.pure_, 'a': FunctionAttribute.pure_,
'b': FunctionAttribute.nothrow_, 'b': FunctionAttribute.nothrow_,
@ -1916,7 +1916,7 @@ template SetFunctionAttributes(T, string linkage, uint attrs)
!(attrs & FunctionAttribute.safe), !(attrs & FunctionAttribute.safe),
"Cannot have a function/delegate that is both trusted and safe."); "Cannot have a function/delegate that is both trusted and safe.");
enum linkages = ["D", "C", "Windows", "Pascal", "C++", "System"]; static immutable linkages = ["D", "C", "Windows", "Pascal", "C++", "System"];
static assert(canFind(linkages, linkage), "Invalid linkage '" ~ static assert(canFind(linkages, linkage), "Invalid linkage '" ~
linkage ~ "', must be one of " ~ linkages.stringof ~ "."); linkage ~ "', must be one of " ~ linkages.stringof ~ ".");
@ -5651,7 +5651,7 @@ unittest
{ {
void foo(); void foo();
static int bar() { return 42; } static int bar() { return 42; }
enum aa = [ 1: -1 ]; immutable aa = [ 1: -1 ];
alias myint = int; alias myint = int;
static assert( isExpressionTuple!(42)); static assert( isExpressionTuple!(42));

View file

@ -7299,7 +7299,7 @@ enum UnicodeDecomposition {
enum { enum {
Canonical = UnicodeDecomposition.Canonical, Canonical = UnicodeDecomposition.Canonical,
Compatibility = UnicodeDecomposition.Compatibility Compatibility = UnicodeDecomposition.Compatibility
}; }
/++ /++
Try to canonically compose 2 $(CHARACTERS). Try to canonically compose 2 $(CHARACTERS).
@ -7571,7 +7571,7 @@ enum {
NFKC = NormalizationForm.NFKC, NFKC = NormalizationForm.NFKC,
///ditto ///ditto
NFKD = NormalizationForm.NFKD NFKD = NormalizationForm.NFKD
}; }
/++ /++
Returns $(D input) string normalized to the chosen form. Returns $(D input) string normalized to the chosen form.

View file

@ -344,7 +344,7 @@ public struct UUID
throw new UUIDParsingException(to!string(uuid), 35, UUIDParsingException.Reason.tooMuch, throw new UUIDParsingException(to!string(uuid), 35, UUIDParsingException.Reason.tooMuch,
"Input is too long, need exactly 36 characters"); "Input is too long, need exactly 36 characters");
} }
enum skipInd = [skipSeq]; static immutable skipInd = [skipSeq];
foreach (pos; skipInd) foreach (pos; skipInd)
if (uuid[pos] != '-') if (uuid[pos] != '-')
throw new UUIDParsingException(to!string(uuid), pos, throw new UUIDParsingException(to!string(uuid), pos,