debug crash for travis

This commit is contained in:
Jinhao 2016-06-24 12:20:35 +08:00
parent 208626a27f
commit dbd08c2aa7

View File

@ -23,6 +23,8 @@
#include <stdexcept> #include <stdexcept>
#include <algorithm> #include <algorithm>
#include <iostream> //debug travis
namespace nana namespace nana
{ {
@ -92,6 +94,7 @@ namespace detail
{ {
void operator()(basic_window* wd) const void operator()(basic_window* wd) const
{ {
std::cout << "delete basic_window " << wd << std::endl;
delete wd; delete wd;
} }
}; };