aboutsummaryrefslogtreecommitdiff
path: root/src/dolphin/Log.h
diff options
context:
space:
mode:
authorRSDuck <rsduck@users.noreply.github.com>2019-08-16 23:17:08 +0200
committerRSDuck <rsduck@users.noreply.github.com>2020-06-16 11:54:50 +0200
commit86b96ca47a3b08a16ed5ed865b2d1bdb46a6c8cb (patch)
treead9fe069d9d30f089b647469222f38c8eb76843a /src/dolphin/Log.h
parent727be0fd927c1b28d596e12bdee3f301fcec3a49 (diff)
remove unneeded dolphin code, C++11 static_assert
Diffstat (limited to 'src/dolphin/Log.h')
-rw-r--r--src/dolphin/Log.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/dolphin/Log.h b/src/dolphin/Log.h
deleted file mode 100644
index a7f4b6a..0000000
--- a/src/dolphin/Log.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-#include "CommonFuncs.h"
-
-#include <stdio.h>
-
-#define PanicAlert(fmt, ...) \
- do \
- { \
- printf(fmt "\n", ## __VA_ARGS__); \
- abort(); \
- } while (false)
-
-
-#define DYNA_REC 0
-
-#define ERROR_LOG(which, fmt, ...) \
- do \
- { \
- printf(fmt "\n", ## __VA_ARGS__); \
- } while (false)