diff options
author | Luigi Yucheng LIU <luigi.liu@laposte.net> | 2014-08-28 21:21:39 +0800 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-08-28 19:20:25 +0200 |
commit | 31f249a0ddf0dab867b40c9b7a4fac234e0f9a9a (patch) | |
tree | 5095ea9ff045b42947526d2a29e9e2b26d143468 | |
parent | 3fa1f2625204117ba5acd056c6958b3c5c19a0fe (diff) | |
download | ODR-PadEnc-31f249a0ddf0dab867b40c9b7a4fac234e0f9a9a.tar.gz ODR-PadEnc-31f249a0ddf0dab867b40c9b7a4fac234e0f9a9a.tar.bz2 ODR-PadEnc-31f249a0ddf0dab867b40c9b7a4fac234e0f9a9a.zip |
Bugfix on debugging information.
Fixes bug that do call database.disp () without being in debug mode.
-rw-r--r-- | src/mot-encoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mot-encoder.cpp b/src/mot-encoder.cpp index 96c5f41..561406b 100644 --- a/src/mot-encoder.cpp +++ b/src/mot-encoder.cpp @@ -385,7 +385,7 @@ int main(int argc, char *argv[]) } } -#ifdef DEBUG +#if DEBUG slides_history.disp_database(); #endif |