-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
WentsingNee
committed
Apr 3, 2024
1 parent
450ee19
commit 3a68f7c
Showing
11 changed files
with
462 additions
and
342 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* @file array.a1d.inst.cpp | ||
* @brief | ||
* @date 2024-03-28 | ||
* @author Peter | ||
* @ori array.inst.cpp 2020-09-17 | ||
* @copyright | ||
* Peter of [ThinkSpirit Laboratory](http://thinkspirit.org/) | ||
* of [Nanjing University of Information Science & Technology](http://www.nuist.edu.cn/) | ||
* all rights reserved | ||
*/ | ||
|
||
#include <ktest/compatibility/msvc_tmpinst_constexpr.hpp> | ||
|
||
#include <kerbal/container/array.hpp> | ||
|
||
|
||
template class kerbal::container::array<int[8], 8>; | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int[8], 8>::assign(const_pointer, const_pointer); | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int[8], 8>::assign(const_iterator, const_iterator); | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int[8], 8>::assign(const_reverse_iterator, const_reverse_iterator); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* @file array.a2d.inst.cpp | ||
* @brief | ||
* @date 2024-03-28 | ||
* @author Peter | ||
* @ori array.inst.cpp 2020-09-17 | ||
* @copyright | ||
* Peter of [ThinkSpirit Laboratory](http://thinkspirit.org/) | ||
* of [Nanjing University of Information Science & Technology](http://www.nuist.edu.cn/) | ||
* all rights reserved | ||
*/ | ||
|
||
#include <ktest/compatibility/msvc_tmpinst_constexpr.hpp> | ||
|
||
#include <kerbal/container/array.hpp> | ||
|
||
|
||
template class kerbal::container::array<int[4][4], 4>; | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int[4][4], 4>::assign(const_pointer, const_pointer); | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int[4][4], 4>::assign(const_iterator, const_iterator); | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int[4][4], 4>::assign(const_reverse_iterator, const_reverse_iterator); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* @file array.i.inst.cpp | ||
* @brief | ||
* @date 2024-03-28 | ||
* @author Peter | ||
* @ori array.inst.cpp 2020-09-17 | ||
* @copyright | ||
* Peter of [ThinkSpirit Laboratory](http://thinkspirit.org/) | ||
* of [Nanjing University of Information Science & Technology](http://www.nuist.edu.cn/) | ||
* all rights reserved | ||
*/ | ||
|
||
#include <ktest/compatibility/msvc_tmpinst_constexpr.hpp> | ||
|
||
#include <kerbal/container/array.hpp> | ||
|
||
|
||
template class kerbal::container::array<int, 64>; | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int, 64>::assign(const_pointer, const_pointer); | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int, 64>::assign(const_iterator, const_iterator); | ||
|
||
template KERBAL_MSVC_TMPINST_CONSTEXPR14 | ||
void kerbal::container::array<int, 64>::assign(const_reverse_iterator, const_reverse_iterator); |
Oops, something went wrong.