microsoft / cpprestsdk

The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
Other
7.96k stars 1.65k forks source link

Excessive headers in stdafx.h #1650

Open Hsilgos opened 2 years ago

Hsilgos commented 2 years ago

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).