openframeworks / openFrameworks

openFrameworks is a community-developed cross platform toolkit for creative coding in C++.
http://openframeworks.cc
Other
9.98k stars 2.55k forks source link

more .h includes simplification #8187

Open dimitre opened 1 week ago

dimitre commented 1 week ago

This PR removes some includes from ofConstants.h and include by demand where needed. includes are:

#include <stdint.h>
#include <cstdio>
#include <cstdlib>
#include <string>
#include <cstring>
#include <iostream>
#include <vector>
#include <memory>
#include <functional>

We can add them to ofMain.h to assure they are still added on projects

Linux action runner is failing because of libgconf-2-4

dimitre commented 1 week ago

good to go. should we re-add includes in ofMain.h to keep all of them available ?