Skip to content

Commit

Permalink
📄 add short license text to all source files
Browse files Browse the repository at this point in the history
  • Loading branch information
zie87 committed Oct 6, 2023
1 parent da5d7a1 commit d1ea09f
Show file tree
Hide file tree
Showing 12 changed files with 72 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/zll/debug/static_assert.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef ZLL_DEBUG_STATICASSERT_HPP
#define ZLL_DEBUG_STATICASSERT_HPP

Expand Down
6 changes: 6 additions & 0 deletions include/zll/meta/integral_constant.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef ZLL_META_INTEGRALCONSTANT_HPP
#define ZLL_META_INTEGRALCONSTANT_HPP

Expand Down
6 changes: 6 additions & 0 deletions include/zll/meta/is_pointer.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef ZLL_META_ISPOINTER_HPP
#define ZLL_META_ISPOINTER_HPP

Expand Down
6 changes: 6 additions & 0 deletions include/zll/meta/is_same.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef ZLL_META_ISSAME_HPP
#define ZLL_META_ISSAME_HPP

Expand Down
6 changes: 6 additions & 0 deletions include/zll/meta/remove_cv.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef ZLL_META_REMOVECV_HPP
#define ZLL_META_REMOVECV_HPP

Expand Down
6 changes: 6 additions & 0 deletions include/zll/type_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef ZLL_TYPETRAITS_HPP
#define ZLL_TYPETRAITS_HPP

Expand Down
6 changes: 6 additions & 0 deletions include/zll/utils/macros.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef ZLL_UTILS_MACROS_HPP
#define ZLL_UTILS_MACROS_HPP

Expand Down
6 changes: 6 additions & 0 deletions tests/unit_tests/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include <utest.h>

UTEST_STATE();
Expand Down
6 changes: 6 additions & 0 deletions tests/unit_tests/meta/integral_constant_tests.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "zll/meta/integral_constant.hpp"
#include "zll/debug/static_assert.hpp"

Expand Down
6 changes: 6 additions & 0 deletions tests/unit_tests/meta/is_pointer_tests.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "zll/meta/is_pointer.hpp"
#include "zll/meta/is_same.hpp"

Expand Down
6 changes: 6 additions & 0 deletions tests/unit_tests/meta/is_same_tests.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "zll/meta/is_same.hpp"

#include <utest.h>
Expand Down
6 changes: 6 additions & 0 deletions tests/unit_tests/meta/remove_cv_tests.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "zll/meta/remove_cv.hpp"
#include "zll/meta/is_same.hpp"

Expand Down

0 comments on commit d1ea09f

Please sign in to comment.