-
Notifications
You must be signed in to change notification settings - Fork 122
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
1 parent
1027afc
commit 18a17ac
Showing
4 changed files
with
76 additions
and
75 deletions.
There are no files selected for viewing
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,29 @@ | ||
#ifndef CLAD_DIFFERENTIATOR_SINS_H | ||
#define CLAD_DIFFERENTIATOR_SINS_H | ||
|
||
#include <type_traits> | ||
|
||
/// Standard-protected facility allowing access into private members in C++. | ||
/// Use with caution! | ||
// NOLINTBEGIN(cppcoreguidelines-macro-usage) | ||
#define CONCATE_(X, Y) X##Y | ||
#define CONCATE(X, Y) CONCATE_(X, Y) | ||
#define ALLOW_ACCESS(CLASS, MEMBER, ...) \ | ||
template <typename Only, __VA_ARGS__ CLASS::*Member> \ | ||
struct CONCATE(MEMBER, __LINE__) { \ | ||
friend __VA_ARGS__ CLASS::*Access(Only*) { return Member; } \ | ||
}; \ | ||
template <typename> struct Only_##MEMBER; \ | ||
template <> struct Only_##MEMBER<CLASS> { \ | ||
friend __VA_ARGS__ CLASS::*Access(Only_##MEMBER<CLASS>*); \ | ||
}; \ | ||
template struct CONCATE(MEMBER, \ | ||
__LINE__)<Only_##MEMBER<CLASS>, &CLASS::MEMBER> | ||
|
||
#define ACCESS(OBJECT, MEMBER) \ | ||
(OBJECT).*Access((Only_##MEMBER< \ | ||
std::remove_reference<decltype(OBJECT)>::type>*)nullptr) | ||
|
||
// NOLINTEND | ||
|
||
#endif // CLAD_DIFFERENTIATOR_SINS_H |
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
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
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