Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippGrulich committed Feb 5, 2024
1 parent 6777b37 commit e33c537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED True)
set(CATCH_ENABLE_REPRODUCIBLE_BUILD OFF CACHE INTERNAL "Turn off tests")
#set(NES_WARNINGS "-Wall -Wextra -pedantic -Wno-null-character -Wno-dollar-in-identifier-extension -Werror=extra -Werror=exceptions -Werror=all -Werror=integer-overflow -Werror=return-type -Werror=return-stack-address -Werror=delete-non-virtual-dtor -Werror=deprecated -Werror=writable-strings -Werror=array-bounds -Werror=ignored-qualifiers -Werror=sign-compare -Wno-deprecated-copy-with-dtor -Wno-unused-variable -Wno-unused-but-set-variable -Wno-deprecated-declarations -Wno-invalid-offsetof ")

#set(CMAKE_CXX_FLAGS "${NES_WARNINGS} -Wno-unused-parameter -fPIC -Wno-return-type -fno-omit-frame-pointer")
set(CMAKE_CXX_FLAGS "-fpermissive -fno-omit-frame-pointer")


include(cmake/macros.cmake)
Expand Down
2 changes: 1 addition & 1 deletion nautilus-jit/include/IR/Operations/Operation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ using OperationRawPtr = Operation*;

namespace std {
template<>
struct std::hash<NES::Nautilus::IR::Operations::OperationIdentifier> {
struct hash<NES::Nautilus::IR::Operations::OperationIdentifier> {
std::size_t operator()(const NES::Nautilus::IR::Operations::OperationIdentifier& k) const {
using std::hash;
using std::size_t;
Expand Down

0 comments on commit e33c537

Please sign in to comment.