fixed logging function in opencv_stitching

This commit is contained in:
Alexey Spizhevoy 2011-06-01 13:50:41 +00:00
parent 8191b5564f
commit aa3e481458

View File

@ -49,7 +49,7 @@
#if ENABLE_LOG #if ENABLE_LOG
#include <iostream> #include <iostream>
#define LOG(msg) std::cout << msg; #define LOG(msg) { std::cout << msg; std::cout.flush(); }
#else #else
#define LOG(msg) #define LOG(msg)
#endif #endif