mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
(svn r8092) -Codechange: header files with miscellaneous template classes (smart pointers, blob, array, hashtable, etc.) moved from src/yapf to src/misc as they can now be used anywhere.
This commit is contained in:
parent
152796b528
commit
574ded3afd
@ -5,7 +5,7 @@
|
||||
#include "engine.h"
|
||||
|
||||
#include <new>
|
||||
#include "yapf/blob.hpp"
|
||||
#include "misc/blob.hpp"
|
||||
|
||||
/* Engine list manipulators - current implementation is only C wrapper around CBlobT<EngineID> (see yapf/blob.hpp) */
|
||||
|
||||
|
@ -3,9 +3,9 @@
|
||||
#ifndef NODELIST_HPP
|
||||
#define NODELIST_HPP
|
||||
|
||||
#include "array.hpp"
|
||||
#include "hashtable.hpp"
|
||||
#include "binaryheap.hpp"
|
||||
#include "../misc/array.hpp"
|
||||
#include "../misc/hashtable.hpp"
|
||||
#include "../misc/binaryheap.hpp"
|
||||
|
||||
/** Hash table based node list multi-container class.
|
||||
* Implements open list, closed list and priority queue for A-star
|
||||
|
@ -71,12 +71,12 @@ typedef CPerfStartFake CPerfStart;
|
||||
//#undef FORCEINLINE
|
||||
//#define FORCEINLINE inline
|
||||
|
||||
#include "crc32.hpp"
|
||||
#include "blob.hpp"
|
||||
#include "fixedsizearray.hpp"
|
||||
#include "array.hpp"
|
||||
#include "hashtable.hpp"
|
||||
#include "binaryheap.hpp"
|
||||
#include "../misc/crc32.hpp"
|
||||
#include "../misc/blob.hpp"
|
||||
#include "../misc/fixedsizearray.hpp"
|
||||
#include "../misc/array.hpp"
|
||||
#include "../misc/hashtable.hpp"
|
||||
#include "../misc/binaryheap.hpp"
|
||||
#include "nodelist.hpp"
|
||||
#include "yapf_base.hpp"
|
||||
#include "yapf_node.hpp"
|
||||
|
@ -5,8 +5,8 @@
|
||||
|
||||
#include "../debug.h"
|
||||
|
||||
#include "fixedsizearray.hpp"
|
||||
#include "blob.hpp"
|
||||
#include "../misc/fixedsizearray.hpp"
|
||||
#include "../misc/blob.hpp"
|
||||
#include "nodelist.hpp"
|
||||
|
||||
extern int _total_pf_time_us;
|
||||
|
Loading…
Reference in New Issue
Block a user