forked from M-Labs/nac3
David Mak
b58c99369e
- Change CSlice to use `void*` for better pointer compatibility - Only include impl *.hpp files in irrt.cpp - Refactor typedef to using declaration - Add missing ``// namespace`
9 lines
119 B
C++
9 lines
119 B
C++
#pragma once
|
|
|
|
#include "irrt/int_types.hpp"
|
|
|
|
template<typename SizeT>
|
|
struct CSlice {
|
|
void* base;
|
|
SizeT len;
|
|
}; |