Do not compile mem operations on non-debug env

This commit is contained in:
Alex 2023-04-04 03:36:51 +03:00
parent 548e410a6e
commit c6add85f40
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -15,6 +15,8 @@
along with Fennix Kernel. If not, see <https://www.gnu.org/licenses/>.
*/
#ifdef DEBUG
#include <types.h>
#include <memory.hpp>
#include <convert.h>
@ -135,3 +137,5 @@ __constructor void TestMemoryOperations()
debug("Memory operations test passed");
}
#endif