You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seperate modules within the elements project contain header files with the same name. For example both artist and elements have a header file in their include dir called infra/support.hpp. Which one you get will depend on the include path order of the build. This will cause errors.
A suggestion is that you namespace header files to avoid that kind of problem. So something like infra/artist_support.hpp for artist and infra/elements_support.hpp for elements.
The text was updated successfully, but these errors were encountered:
Seperate modules within the elements project contain header files with the same name. For example both
artist
andelements
have a header file in their include dir calledinfra/support.hpp
. Which one you get will depend on the include path order of the build. This will cause errors.A suggestion is that you namespace header files to avoid that kind of problem. So something like
infra/artist_support.hpp
for artist andinfra/elements_support.hpp
for elements.The text was updated successfully, but these errors were encountered: