Skip to content

Commit

Permalink
Comment out the example of using the custom memory manager
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyMakeev committed Jan 8, 2025
1 parent 76f9c59 commit 19d0caf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
build2019
build2022
build
*.log
*.zm
Expand Down
3 changes: 3 additions & 0 deletions ZmeyaTest01.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "gtest/gtest.h"

/*
namespace Memory
{
Expand Down Expand Up @@ -54,6 +55,8 @@ void mfree(void* p)
#define ZMEYA_ALLOC(sizeInBytes, alignment) Memory::malloc(sizeInBytes, alignment)
#define ZMEYA_FREE(ptr) Memory::mfree(ptr)
*/

#include "TestHelper.h"
#include "Zmeya.h"

Expand Down
File renamed without changes.
10 changes: 10 additions & 0 deletions gen22.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
set builddir=build2022
if not exist %builddir% goto GENERATE
del %builddir% /S /Q
:GENERATE
mkdir %builddir%
cd %builddir%
cmake -G "Visual Studio 17 2022" ../
cd ..

0 comments on commit 19d0caf

Please sign in to comment.