- Added Debian dependencies to README.md and fixed some issues that I ran into on a clean machine

This commit is contained in:
2025-08-17 09:51:08 -04:00
parent 3ddc2b3d97
commit 73041e994d
5 changed files with 21 additions and 8 deletions

View File

@@ -16,8 +16,8 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// =====================================================================================================================
#ifndef FENNEC_CONTAINERS_SET_H
#define FENNEC_CONTAINERS_SET_H
#ifndef FENNEC_CONTAINERS_MULTISET_H
#define FENNEC_CONTAINERS_MULTISET_H
// https://programming.guide/robin-hood-hashing.html

View File

@@ -24,14 +24,20 @@
// implementation
#if FENNEC_COMPILER_GCC
#define __OPTIMIZE__
#ifndef __OPTIMIZE__
# define __OPTIMIZE__
#else
# define FENNEC_OPTIMIZE_FOUND
#endif
#endif
#include <string.h>
#include <wchar.h>
#if FENNEC_COMPILER_GCC
#ifndef FENNEC_OPTIMIZE_FOUND
#undef __OPTIMIZE__
#endif
#endif
#endif // FENNEC_MEMORY_DETAIL_MEMORY_H