mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
chore(build): improve include paths
This commit is contained in:
parent
3d5794ed7c
commit
118d20c49d
30 changed files with 54 additions and 55 deletions
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef STORM_LIST_TS_EXPLICIT_LIST_HPP
|
||||
#define STORM_LIST_TS_EXPLICIT_LIST_HPP
|
||||
|
||||
#include "list/TSGetExplicitLink.hpp"
|
||||
#include "list/TSList.hpp"
|
||||
#include "storm/list/TSGetExplicitLink.hpp"
|
||||
#include "storm/list/TSList.hpp"
|
||||
#include <cstdlib>
|
||||
|
||||
#define STORM_EXPLICIT_LIST(T, link) TSExplicitList<T, offsetof(T, link)>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef STORM_LIST_TS_GET_EXPLICIT_LINK_HPP
|
||||
#define STORM_LIST_TS_GET_EXPLICIT_LINK_HPP
|
||||
|
||||
#include "list/TSLink.hpp"
|
||||
#include "storm/list/TSLink.hpp"
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef STORM_LIST_TS_GET_LINK_HPP
|
||||
#define STORM_LIST_TS_GET_LINK_HPP
|
||||
|
||||
#include "list/TSLink.hpp"
|
||||
#include "list/TSLinkedNode.hpp"
|
||||
#include "storm/list/TSLink.hpp"
|
||||
#include "storm/list/TSLinkedNode.hpp"
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef STORM_LIST_TS_LINKED_NODE_HPP
|
||||
#define STORM_LIST_TS_LINKED_NODE_HPP
|
||||
|
||||
#include "list/TSLink.hpp"
|
||||
#include "storm/list/TSLink.hpp"
|
||||
|
||||
template <class T>
|
||||
class TSLinkedNode {
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
#ifndef STORM_LIST_TS_LIST_HPP
|
||||
#define STORM_LIST_TS_LIST_HPP
|
||||
|
||||
#include "Memory.hpp"
|
||||
#include "list/TSGetLink.hpp"
|
||||
#include "list/TSLink.hpp"
|
||||
#include "storm/Memory.hpp"
|
||||
#include "storm/list/TSGetLink.hpp"
|
||||
#include "storm/list/TSLink.hpp"
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue