fix: fix issues
- fix BMapBindings generator due to the rename of LIBCMO_EXPORT -> BMAP_EXPORT. - fix relative path issue in Python scripts within CodeGen. - remove all references to LIBCMO_PANIC. use exception instead to tell user they are fool. - basically finish universal encoding tables. add lost encoding name.
This commit is contained in:
@ -101,7 +101,7 @@ namespace LibCmo::CK2 {
|
||||
|
||||
#pragma region Self Used Data Struct
|
||||
|
||||
void CKStateChunk::LockedReadBufferDeleter::operator()(LIBCMO_UNUSED const void* buf) {
|
||||
void CKStateChunk::LockedReadBufferDeleter::operator()(const void* /*buf*/) {
|
||||
if (m_Host == nullptr) return;
|
||||
m_Host->UnLockReadBuffer(m_ConsumedSize);
|
||||
}
|
||||
@ -110,7 +110,7 @@ namespace LibCmo::CK2 {
|
||||
m_ConsumedSize = newsize;
|
||||
}
|
||||
|
||||
void CKStateChunk::LockedWriteBufferDeleter::operator()(LIBCMO_UNUSED const void* buf) {
|
||||
void CKStateChunk::LockedWriteBufferDeleter::operator()(const void* /*buf*/) {
|
||||
if (m_Host == nullptr) return;
|
||||
m_Host->UnLockWriteBuffer(m_ConsumedSize);
|
||||
}
|
||||
|
Reference in New Issue
Block a user