Saturday, July 6, 2013

How to waste time

The reason I wasted 2 sweet afternoon hours of Saturday: 1) cmake 2.8.10 has a bug which removing CMakeCache.txt does not completely remove cached values of previous execution. Attempting -DCMAKE_CXX_COMPILER=icpc even results in an infinte loop! (seriously?)  2) intel compiler does not support override keyword.

At this point, I really want to abandon cmake. I have cumulatively spent at least (literally!) a week on figuring out why my cmake file is not working on a new system I want to deploy my stuff on. But what's an alternative?  bjam? Seriously?

Thursday, July 4, 2013

decltype extravaganza

OK, I thought C++11 was cool, but I am ending up writing a code like this:



row_assign_ = nomad_allocator<std::remove_pointer<decltype(row_assign_)>::type>().allocate(num_rows_);
// is this really better than
row_assign_ = my_allocator<int>().allocate(num_rows_);
// ...?
view raw gistfile1.cpp hosted with ❤ by GitHub