misc.
This commit is contained in:
parent
1fafffd8af
commit
0cabfb6cfa
@ -3,7 +3,7 @@
|
||||
#ifndef NV_CORE_ALGORITHMS_H
|
||||
#define NV_CORE_ALGORITHMS_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include "nvcore.h"
|
||||
|
||||
namespace nv
|
||||
{
|
||||
|
@ -16,10 +16,10 @@ Do not use memmove in insert & remove, use copy ctors instead.
|
||||
|
||||
|
||||
// nvcore
|
||||
#include <nvcore/nvcore.h>
|
||||
#include <nvcore/Memory.h>
|
||||
#include <nvcore/Debug.h>
|
||||
//#include <nvcore/Stream.h>
|
||||
#include "nvcore.h"
|
||||
#include "Memory.h"
|
||||
#include "Debug.h"
|
||||
//#include "Stream.h"
|
||||
|
||||
#include <string.h> // memmove
|
||||
#include <new> // for placement new
|
||||
|
@ -1,7 +1,7 @@
|
||||
// This code is in the public domain -- castanyo@yahoo.es
|
||||
|
||||
#include <nvcore/Debug.h>
|
||||
#include <nvcore/StrLib.h>
|
||||
#include "Debug.h"
|
||||
#include "StrLib.h"
|
||||
|
||||
// Extern
|
||||
#if NV_OS_WIN32 //&& NV_CC_MSVC
|
||||
@ -48,7 +48,7 @@
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#include <stdexcept> // std::runtime_error
|
||||
//#include <stdexcept> // std::runtime_error
|
||||
#undef assert // defined on mingw
|
||||
|
||||
using namespace nv;
|
||||
@ -360,7 +360,8 @@ namespace
|
||||
|
||||
if( ret == NV_ABORT_EXIT ) {
|
||||
// Exit cleanly.
|
||||
throw std::runtime_error("Assertion failed");
|
||||
//throw std::runtime_error("Assertion failed");
|
||||
throw "Assertion failed";
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ifndef NV_CORE_DEBUG_H
|
||||
#define NV_CORE_DEBUG_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include "nvcore.h"
|
||||
|
||||
#if defined(HAVE_STDARG_H)
|
||||
# include <stdarg.h> // va_list
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ifndef NV_CORE_FILESYSTEM_H
|
||||
#define NV_CORE_FILESYSTEM_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include "nvcore.h"
|
||||
|
||||
namespace nv
|
||||
{
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ifndef NV_CORE_LIBRARY_H
|
||||
#define NV_CORE_LIBRARY_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include "nvcore.h"
|
||||
|
||||
#if NV_OS_WIN32
|
||||
#define LIBRARY_NAME(name) #name ".dll"
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ifndef NV_CORE_MEMORY_H
|
||||
#define NV_CORE_MEMORY_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include "nvcore.h"
|
||||
|
||||
#include <stdlib.h> // malloc(), realloc() and free()
|
||||
#include <stddef.h> // size_t
|
||||
|
@ -3,8 +3,8 @@
|
||||
#ifndef NV_CORE_PTR_H
|
||||
#define NV_CORE_PTR_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include <nvcore/Debug.h>
|
||||
#include "nvcore.h"
|
||||
#include "Debug.h"
|
||||
|
||||
#include <stdio.h> // NULL
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
#ifndef NV_CORE_REFCOUNTED_H
|
||||
#define NV_CORE_REFCOUNTED_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include <nvcore/Debug.h>
|
||||
#include "nvcore.h"
|
||||
#include "Debug.h"
|
||||
|
||||
|
||||
namespace nv
|
||||
|
@ -1,6 +1,6 @@
|
||||
// This code is in the public domain -- castanyo@yahoo.es
|
||||
|
||||
#include <nvcore/StrLib.h>
|
||||
#include "StrLib.h"
|
||||
|
||||
#include <math.h> // log
|
||||
#include <stdio.h> // vsnprintf
|
||||
|
@ -3,8 +3,8 @@
|
||||
#ifndef NV_CORE_STRING_H
|
||||
#define NV_CORE_STRING_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include <nvcore/Containers.h> // swap
|
||||
#include "nvcore.h"
|
||||
#include "Containers.h" // swap
|
||||
|
||||
#include <string.h> // strlen, strcmp, etc.
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
#ifndef NV_CORE_STREAM_H
|
||||
#define NV_CORE_STREAM_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include <nvcore/Debug.h>
|
||||
#include "nvcore.h"
|
||||
#include "Debug.h"
|
||||
|
||||
namespace nv
|
||||
{
|
||||
|
@ -3,8 +3,8 @@
|
||||
#ifndef NV_CORE_TEXTREADER_H
|
||||
#define NV_CORE_TEXTREADER_H
|
||||
|
||||
#include <nvcore/Containers.h>
|
||||
#include <nvcore/Stream.h>
|
||||
#include "Containers.h"
|
||||
#include "Stream.h"
|
||||
|
||||
namespace nv
|
||||
{
|
||||
|
@ -3,8 +3,8 @@
|
||||
#ifndef NV_CORE_TEXTWRITER_H
|
||||
#define NV_CORE_TEXTWRITER_H
|
||||
|
||||
#include <nvcore/StrLib.h>
|
||||
#include <nvcore/Stream.h>
|
||||
#include "StrLib.h"
|
||||
#include "Stream.h"
|
||||
|
||||
namespace nv
|
||||
{
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ifndef NV_CORE_TIMER_H
|
||||
#define NV_CORE_TIMER_H
|
||||
|
||||
#include <nvcore/nvcore.h>
|
||||
#include "nvcore.h"
|
||||
|
||||
#if 1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user