Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Concepts refactor #8

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
*.gch
build/
build-*/
cmake-build-*
/Debug/
./extern/googletest/*
.vscode
.idea
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ install(DIRECTORY
DESTINATION
include)

SET(ENABLE_TESTS On CACHE BOOL "Test variable defaulting to '0'")
if(ENABLE_TESTS)
enable_testing()
add_subdirectory(test)
Expand Down
1 change: 0 additions & 1 deletion include/camp/camp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ For details about use and distribution, please read LICENSE and NOTICE from
#ifndef __CAMP_HPP
#define __CAMP_HPP

#include <array>
#include <type_traits>

#include "camp/defines.hpp"
Expand Down