From aba94872fad12d57c1a6b6885943e4beeb06a855 Mon Sep 17 00:00:00 2001 From: billich Date: Mon, 17 Mar 2014 20:51:57 +0000 Subject: [PATCH] give proper credits for DEBUG(x) macro, I got it from http://stackoverflow.com/a/14256296 (http://stackoverflow.com/questions/14251038/debug-macros-in-c) git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@790 951219d9-93cf-4727-9268-0efd64621fa3 --- slsDetectorSoftware/slsReceiver/eigerReceiver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slsDetectorSoftware/slsReceiver/eigerReceiver.cpp b/slsDetectorSoftware/slsReceiver/eigerReceiver.cpp index 497ab59f4..8d206cacb 100644 --- a/slsDetectorSoftware/slsReceiver/eigerReceiver.cpp +++ b/slsDetectorSoftware/slsReceiver/eigerReceiver.cpp @@ -13,7 +13,7 @@ /* uncomment next line to enable debug output */ #define EIGER_DEBUG -/* macro for debug output */ +/* macro for debug output http://stackoverflow.com/a/14256296 */ #ifdef EIGER_DEBUG #define DEBUG(x) do { std::cerr << x << std::endl; } while (0) #else