More tweaks.

This commit is contained in:
castano
2011-04-06 02:14:32 +00:00
parent ce8647c51d
commit 9ebcff93de
7 changed files with 31 additions and 30 deletions

View File

@ -10,7 +10,6 @@ SET(CORE_SRCS
DefsVcWin32.h
FileSystem.h FileSystem.cpp
ForEach.h
HashMap.h
Library.h Library.cpp
Memory.h Memory.cpp
Ptr.h

View File

@ -1,7 +1,7 @@
// This code is in the public domain -- Ignacio Casta<74>o <castano@gmail.com>
#include "Debug.h"
#include "StrLib.h"
#include "StrLib.h" // StringBuilder
// Extern
#if NV_OS_WIN32 //&& NV_CC_MSVC

View File

@ -6,6 +6,12 @@
/*
HashMap based on Thatcher Ulrich <tu@tulrich.com> container, donated to the Public Domain.
I'd like to do something to reduce the amount of code generated with this template. The type of
U is largely irrelevant to the generated code, except for calls to constructors and destructors,
but the combination of all T and U pairs, generate a large amounts of code.
HashMap is not used in NVTT, so it could be removed from the repository.
*/