Sha256: 05370d4d6b035fc81f304d1142b10750d4906e9cc636c008753b85b96f39c750
Contents?: true
Size: 341 Bytes
Versions: 8
Compression:
Stored size: 341 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __XOT_DEBUG_H__ #define __XOT_DEBUG_H__ #if 1//def _DEBUG #define XOT_USE_DOUT #endif namespace Xot { #ifdef XOT_USE_DOUT void dout (const char* format, ...); void doutln (const char* format, ...); #else inline void dout (...) {} inline void doutln (...) {} #endif }// Xot #endif//EOH
Version data entries
8 entries across 8 versions & 1 rubygems