fix(common): <bc/Memory.hpp>, not <storm/Memory.hpp>

This commit is contained in:
phaneron 2025-03-31 20:29:45 -04:00
parent 9039ff45c5
commit 755157cb5a
9 changed files with 10 additions and 10 deletions

View file

@ -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;

View file

@ -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 {

View file

@ -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() {

View file

@ -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 {

View file

@ -1,5 +1,5 @@
#include "common/mempool/MemChunk.hpp"
#include <storm/Memory.hpp>
#include <bc/Memory.hpp>
struct MemBlock {
void* next;

View file

@ -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);

View file

@ -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;

View file

@ -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) {

View file

@ -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>