Skip to content

Commit

Permalink
Mark backup_display for export
Browse files Browse the repository at this point in the history
Add the `ROUGHPY_PLATFORM_EXPORT` macro to the `backup_display` function to ensure it is properly exported for external use. This change allows the function to be accessible outside the compilation unit, facilitating integration with other modules or shared libraries.
  • Loading branch information
inakleinbottle committed Nov 26, 2024
1 parent 66e0e04 commit 226e5dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/include/roughpy/generics/values.h
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ class ROUGHPY_PLATFORM_EXPORT Value

namespace dtl {

void backup_display(std::ostream& os);
void ROUGHPY_PLATFORM_EXPORT backup_display(std::ostream& os);

}

Expand Down

0 comments on commit 226e5dd

Please sign in to comment.