-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
U-Jrong-PC\Jrong
committed
Jan 17, 2015
1 parent
8b53347
commit 3dc0d35
Showing
15 changed files
with
59 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
d:\projects\sb-stl\build\debug\vc120.pdb | ||
d:\projects\sb-stl\build\debug\vc120.idb | ||
d:\projects\sb-stl\build\debug\test.obj | ||
d:\projects\sb-stl\build\debug\sb-stl.ilk | ||
d:\projects\sb-stl\build\debug\sb-stl.exe | ||
d:\projects\sb-stl\build\debug\sb-stl.pdb | ||
d:\projects\sb-stl\build\debug\sb-stl.tlog\cl.command.1.tlog | ||
d:\projects\sb-stl\build\debug\sb-stl.tlog\cl.read.1.tlog | ||
d:\projects\sb-stl\build\debug\sb-stl.tlog\cl.write.1.tlog | ||
d:\projects\sb-stl\build\debug\sb-stl.tlog\link.command.1.tlog | ||
d:\projects\sb-stl\build\debug\sb-stl.tlog\link.read.1.tlog | ||
d:\projects\sb-stl\build\debug\sb-stl.tlog\link.write.1.tlog |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
|
||
#ifndef _SB_ALLOC_H_ | ||
#define _SB_ALLOC_H_ | ||
|
||
#include "sb_types.h" | ||
|
||
namespace sb { | ||
|
||
template <class Type> | ||
class allocator { | ||
typedef Type value_type; | ||
typedef Type* pointer; | ||
typedef const Type* const_pointer; | ||
typedef Type& reference; | ||
typedef const Type& const_reference; | ||
typedef size_t size_type; | ||
typedef ptrdiff_t difference_type; | ||
|
||
}; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters