Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Coverted tabs to spaces (sorry, I'm picky that way).
  • Loading branch information
complexmath committed May 6, 2009
1 parent 67e896a commit 2ca2e13
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions import/core/stdc/stdio.d
Expand Up @@ -31,10 +31,10 @@ version( Windows )
FOPEN_MAX = 20,
FILENAME_MAX = 256, // 255 plus NULL
TMP_MAX = 32767,
SYS_OPEN = 20, // non-standard
SYS_OPEN = 20, // non-standard
}
enum int _NFILE = 60; // non-standard
enum int _NFILE = 60; // non-standard
enum string _P_tmpdir = "\\"; // non-standard
enum wstring _wP_tmpdir = "\\"; // non-standard
enum int L_tmpnam = _P_tmpdir.length + 12;
Expand All @@ -55,7 +55,7 @@ else version( OSX )
{
enum
{
BUFSIZ = 1024,
BUFSIZ = 1024,
EOF = -1,
FOPEN_MAX = 20,
FILENAME_MAX = 1024,
Expand Down Expand Up @@ -234,10 +234,10 @@ version( Windows )
{
_IOFBF = 0,
_IOLBF = 0x40,
_IONBF = 4,
_IOREAD = 1, // non-standard
_IOWRT = 2, // non-standard
_IOMYBUF = 8, // non-standard
_IONBF = 4,
_IOREAD = 1, // non-standard
_IOWRT = 2, // non-standard
_IOMYBUF = 8, // non-standard
_IOEOF = 0x10, // non-standard
_IOERR = 0x20, // non-standard
_IOSTRG = 0x40, // non-standard
Expand Down Expand Up @@ -271,7 +271,7 @@ else version( linux )
}
else version( OSX )
{
enum
enum
{
_IOFBF = 0,
_IOLBF = 1,
Expand Down
4 changes: 2 additions & 2 deletions import/object.di
Expand Up @@ -60,16 +60,16 @@ class ClassInfo : Object
// 4: // has offTi[] member
// 8: // has constructors
// 16: // has xgetMembers member
// 32: // has typeinfo member
// 32: // has typeinfo member
void* deallocator;
OffsetTypeInfo[] offTi;
void* defaultConstructor;
const(MemberInfo[]) function(string) xgetMembers;
TypeInfo typeinfo;
static ClassInfo find(in char[] classname);
Object create();
const(MemberInfo[]) getMembers(in char[] classname);
TypeInfo typeinfo;
}
struct OffsetTypeInfo
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/dmd/object_.d
Expand Up @@ -164,7 +164,7 @@ class ClassInfo : Object
// 4: // has offTi[] member
// 8: // has constructors
// 16: // has xgetMembers member
// 32: // has typeinfo member
// 32: // has typeinfo member
void* deallocator;
OffsetTypeInfo[] offTi;
void function(Object) defaultConstructor; // default Constructor
Expand Down

0 comments on commit 2ca2e13

Please sign in to comment.