Skip to content

Commit

Permalink
Remove unneeded SLANG_EXPORT directives
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Jun 25, 2023
1 parent ab0998b commit 4906dfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/slang/util/Enum.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ inline constexpr bitmask_detail::underlying_type_t<T> get_enum_mask(const T&) no
/// of bitwise-combined flags. Built-in strongly-typed C++ enums are not otherwise
/// combinable via operators like | and &.
template<typename T>
class SLANG_EXPORT bitmask {
class bitmask {
public:
using underlying_type = bitmask_detail::underlying_type_t<T>;

Expand Down
2 changes: 1 addition & 1 deletion include/slang/util/Util.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class SLANG_EXPORT AssertionException : public std::logic_error {
/// The real value of this type is in documenting in the API the intentions of the pointer,
/// so that consumers don't need to add explicit null checks.
template<typename T>
class SLANG_EXPORT not_null {
class not_null {
public:
static_assert(std::is_assignable<T&, std::nullptr_t>::value, "T cannot be assigned nullptr.");

Expand Down

0 comments on commit 4906dfa

Please sign in to comment.