buggins / ddbc

DDBC is DB Connector for D language (similar to JDBC)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecation: std.exception.enforceEx

SingingBush opened this issue · comments

In the same was as buggins/hibernated#60 this project should use the following to allow dmd versions above and below 2.089

// For backwards compatibily
// 'enforceEx' will be removed with 2.089
static if(__VERSION__ < 2080) {
    alias enforceHelper = enforceEx;
} else {
    alias enforceHelper = enforce;
}