pointonsoftware / pscore

C++ library for building your business software
GNU Affero General Public License v3.0
1 stars 2 forks source link

Investigate precompiled header application #190

Closed gbenziv closed 3 years ago

gbenziv commented 3 years ago

See if it is worth to use precompiled headers with the current project scale

gbenziv commented 3 years ago

Possibly move all the commonly used standard headers:

#include <functional>
#include <iomanip>
#include <map>
#include <memory>
#include <mutex>
#include <regex>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

and utilities


#include <logger/loghelper.hpp>
gbenziv commented 3 years ago

just realized cpplint complains about missing includes.. will not implement this for now