summaryrefslogtreecommitdiff
path: root/graphics/epix/debug.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-06-13 03:02:55 +0000
committerNorbert Preining <norbert@preining.info>2020-06-13 03:02:55 +0000
commit2d0067edb74f15b431d7a1e3a42b4f525986cef0 (patch)
tree06198722777ad0af165eb45b12960c56b226b0cf /graphics/epix/debug.h
parentc2fde990c352049f8aa6bc9629fee95bad518cde (diff)
CTAN sync 202006130302
Diffstat (limited to 'graphics/epix/debug.h')
-rw-r--r--graphics/epix/debug.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/graphics/epix/debug.h b/graphics/epix/debug.h
deleted file mode 100644
index 204063447a..0000000000
--- a/graphics/epix/debug.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef EPIX_DEBUG
-#define EPIX_DEBUG
-
-#include <iostream>
-#include <cstdlib>
-#include <sstream>
-#include <string>
-
-#include "pairs.h"
-#include "triples.h"
-
-#include "errors.h"
-
-namespace ePiX
-{
- inline void debug_msg(const std::string& msg)
- {
- std::cerr << msg << std::endl;
- }
-
- inline void debug_print(const pair& arg, const std::string& msg="")
- {
- std::cerr << msg << " ("
- << arg.x1() << ", "
- << arg.x2() << ")" << std::endl;
- }
-
- inline void debug_print(const P& arg, const std::string& msg="")
- {
- std::cerr << msg << " ("
- << arg.x1() << ", "
- << arg.x2() << ", "
- << arg.x3() << ")" << std::endl;
- }
-
-}
-#endif /* EPIX_DEBUG */