cpprestsdk icon indicating copy to clipboard operation
cpprestsdk copied to clipboard

Excessive headers in stdafx.h

Open Hsilgos opened this issue 3 years ago • 0 comments

File Release/src/pch/stdafx.h contains following headers:

#include "boost/thread/condition_variable.hpp"
#include "boost/thread/mutex.hpp"

which are not used. Instead of them std::thread and std::condition_variable are used all over the code (at least I haven't found any usage of boost::thread or boost::condition_variable).

Hsilgos avatar Oct 01 '21 16:10 Hsilgos