mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
fix(common): <bc/Memory.hpp>, not <storm/Memory.hpp>
This commit is contained in:
parent
9039ff45c5
commit
755157cb5a
9 changed files with 10 additions and 10 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#include "common/Prop.hpp"
|
||||
#include "common/Thread.hpp"
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
|
||||
namespace Prop {
|
||||
uint32_t s_tlsIndex;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include <cstring>
|
||||
#include <storm/Array.hpp>
|
||||
#include <storm/List.hpp>
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
|
||||
template <class T>
|
||||
class CSimpleSortedArray {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#include <algorithm>
|
||||
#include <cstring>
|
||||
#include <storm/Error.hpp>
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
#include <storm/String.hpp>
|
||||
|
||||
CDataStore::~CDataStore() {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "common/datastore/CDataStore.hpp"
|
||||
#include <cstdlib>
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
|
||||
template <size_t size>
|
||||
class CDataStoreCache : public CDataStore {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "common/mempool/MemChunk.hpp"
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
|
||||
struct MemBlock {
|
||||
void* next;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#include "common/objectalloc/CObjectHeap.hpp"
|
||||
#include <cstring>
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
|
||||
int32_t CObjectHeap::Allocate(uint32_t objSize, uint32_t heapObjects, const char* heapName) {
|
||||
this->m_obj = SMemAlloc(heapObjects * (objSize + sizeof(uint32_t)), heapName, 0, 0x0);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include "common/string/CStringManager.hpp"
|
||||
#include <climits>
|
||||
#include <cstring>
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
#include <storm/String.hpp>
|
||||
|
||||
CStringManager* CStringManager::s_stringManager;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#include "common/string/CStringMemory.hpp"
|
||||
#include <climits>
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
#include <storm/String.hpp>
|
||||
|
||||
void CStringMemory::AllocateBlock(size_t blockSize) {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "common/time/Time.hpp"
|
||||
#include "common/time/win/TimeManager.hpp"
|
||||
#include <storm/Memory.hpp>
|
||||
#include <bc/Memory.hpp>
|
||||
#include <windows.h>
|
||||
#include <new>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue