add missing unsigned long overload for Windows

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@716 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-10-15 09:33:54 +00:00
parent 705122e74c
commit 0d71c438ab
2 changed files with 27 additions and 2 deletions

View file

@ -239,3 +239,21 @@ int main(int argc, char** argv)
}
}
}
void test_dword()
{
typedef signed int Int;
typedef unsigned int UInt;
typedef signed long Long;
typedef unsigned long ULong;
Int i(0);
UInt ui(0);
Long l(0);
ULong ul(0);
Printf("%d")(i);
Printf("%d")(ui);
Printf("%d")(l);
Printf("%d")(ul);
}