Skip to content

Commit

Permalink
Fix deprecation message.
Browse files Browse the repository at this point in the history
  • Loading branch information
LightBender committed Feb 24, 2025
1 parent d1d6c60 commit a0581f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion druntime/src/core/sys/windows/sqltypes.d
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ $(RED Warning:
*/

module core.sys.windows.sqltypes;
deprecated ("The ODBC 3.5 modules are deprecated. Please use the ODBC4 modules in the `etc.c.odbc` package."):
version (Windows):

version (ANSI) {} else version = Unicode;
Expand Down Expand Up @@ -71,6 +70,10 @@ alias long ODBCINT64, SQLBIGINT;
alias ulong SQLUBIGINT;
//}

//Everything above this line may by used by odbcinst.d
//Everything below this line is deprecated
deprecated ("The ODBC 3.5 modules are deprecated. Please use the ODBC4 modules in the `etc.c.odbc` package."):

struct DATE_STRUCT {
SQLSMALLINT year;
SQLUSMALLINT month;
Expand Down

0 comments on commit a0581f2

Please sign in to comment.