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
program_settings.hpp includes header files that added "using namespace proof_system" and "using namespace barretenberg" declarations. This effects downstream code that relies on these using declarations. This is a big code smell (should really not have using declarations in header files!), however fixing it requires changes in a LOT of files.
We likely have using namespace declarations in header files elsewhere in the codebase that need to be removed.
The text was updated successfully, but these errors were encountered:
program_settings.hpp
includes header files that added "using namespace proof_system" and "using namespace barretenberg" declarations. This effects downstream code that relies on these using declarations. This is a big code smell (should really not have using declarations in header files!), however fixing it requires changes in a LOT of files.We likely have
using namespace
declarations in header files elsewhere in the codebase that need to be removed.The text was updated successfully, but these errors were encountered: