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

[BugReport] Type variable_traits seems to inherit from wrong base class. #2

Open
CretaceousConstructor opened this issue Oct 4, 2024 · 0 comments
Assignees

Comments

@CretaceousConstructor
Copy link

CretaceousConstructor commented Oct 4, 2024

In include/mirrow/util/variable_traits.hpp, line 68 to 70:

template <typename T>
struct variable_traits<T*>
    : internal::basic_variable_traits<T> {

Seems like it is supposed to be:

template <typename T>
struct variable_traits<T*>
    : internal::basic_variable_traits<T*> {
@VisualGMQ VisualGMQ self-assigned this Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants