I was trying to use a classfromsepeate C++ code in my Cilk++ code, and encountered compilation errors. Adding the following code at the beginning of Cilk++ code to include both header and C++ code fixed the problem. Thanks. -Hailong
CILK_BEGIN_CPLUSPLUS_HEADERS
#include
#include
CILK_END_CPLUSPLUS_HEADERS

