More tweaks.
This commit is contained in:
@ -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
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
*/
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user