-
Notifications
You must be signed in to change notification settings - Fork 224
Fix *_input classes destructors visibility #3591
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
base: main
Are you sure you want to change the base?
Changes from all commits
21c7f86
2cd019b
1f5e38a
ae259ce
d0323d2
80dfbb1
bc9d385
1d92f4f
17d0452
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -118,6 +118,19 @@ class compute_input : public base { | |||||||||||||
| /// property value | ||||||||||||||
| compute_input(const table& data); | ||||||||||||||
|
|
||||||||||||||
| /// Do not remove the destructor | ||||||||||||||
| /// it is needed to properly handle the visibility of the class in the shared library | ||||||||||||||
| /// while compiling with -fvisibility=hidden | ||||||||||||||
|
|
||||||||||||||
|
Comment on lines
+121
to
+124
|
||||||||||||||
| /// Do not remove the destructor | |
| /// it is needed to properly handle the visibility of the class in the shared library | |
| /// while compiling with -fvisibility=hidden | |
| // Do not remove the destructor. | |
| // It is needed to properly handle the visibility of the class in the shared library | |
| // while compiling with -fvisibility=hidden. |
Uh oh!
There was an error while loading. Please reload this page.