Skip to content

Commit

Permalink
removed cpp standard from cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
mschoenebeck committed Jun 16, 2023
1 parent cfe825e commit 819a472
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.8)
project(bls12-381 VERSION 1.0.0)

set(CMAKE_CXX_STANDARD 17)
#set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_EXTENSIONS ON)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_compile_options(-Wall)
Expand Down
1 change: 1 addition & 0 deletions include/g.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once
#include <cmath>
#include <vector>
#include <functional>
#include "span.h"

namespace bls12_381
Expand Down
1 change: 1 addition & 0 deletions include/pairing.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once
#include <array>
#include <vector>
#include <functional>

namespace bls12_381
{
Expand Down
1 change: 1 addition & 0 deletions src/sha256.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <string>
#include <array>
#include <cstdint>

using namespace std;

Expand Down

0 comments on commit 819a472

Please sign in to comment.