Style: Cleanup header guards for consistency

Fix file names for {Static,Lightmap}RaycasterEmbree.
This commit is contained in:
Rémi Verschelde
2022-09-26 13:03:44 +02:00
parent 3472bdd6b6
commit 49fcf4ffad
30 changed files with 106 additions and 70 deletions

View File

@@ -28,7 +28,8 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#pragma once
#ifndef POOLED_LIST_H
#define POOLED_LIST_H
// Simple template to provide a pool with O(1) allocate and free.
// The freelist could alternatively be a linked list placed within the unused elements
@@ -206,3 +207,5 @@ private:
LocalVector<U, U> _active_map;
LocalVector<U, U> _active_list;
};
#endif // POOLED_LIST_H