Skip to content

Commit

Permalink
Merge pull request #80 from pinver/patch-1
Browse files Browse the repository at this point in the history
Remove trailing semicolons
  • Loading branch information
jacob-carlborg authored May 11, 2020
2 parents a09e582 + 5eb9ef9 commit 97bc365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/ddb/postgres.d
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ static assert(arrayDimensions!(int[]) == 1);
static assert(arrayDimensions!(int[][]) == 2);
static assert(arrayDimensions!(int[][][]) == 3);

enum TransactionStatus : char { OutsideTransaction = 'I', InsideTransaction = 'T', InsideFailedTransaction = 'E' };
enum TransactionStatus : char { OutsideTransaction = 'I', InsideTransaction = 'T', InsideFailedTransaction = 'E' }

enum string[int] baseTypes = [
// boolean types
Expand Down Expand Up @@ -868,7 +868,7 @@ enum PGType : int

JSON = 114,
JSONARRAY = 199
};
}

class ParamException : Exception
{
Expand Down

0 comments on commit 97bc365

Please sign in to comment.