Add better precompiler control

This commit is contained in:
2025-12-08 19:16:18 +00:00
parent 8fc6d63748
commit 136c546c1f
5 changed files with 23 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
#ifndef ROPE_HPP
#define ROPE_HPP
#ifndef ROPE_H
#define ROPE_H
#include <cstdint>
#include <vector>
@@ -154,4 +154,4 @@ std::vector<std::pair<size_t, size_t>> search_rope(Knot *root,
// This must be called only once when the rope is no longer needed
void free_rope(Knot *root);
#endif // ROPE_HPP
#endif // ROPE_H