Skip to content

Commit

Permalink
Remove extra underscore in the macro name
Browse files Browse the repository at this point in the history
  • Loading branch information
akukanov committed Aug 2, 2024
1 parent 7d5f55a commit 7c241de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ drop_segments(R&& segments, std::size_t n)

} // namespace oneapi::dpl::experimental::dr

namespace __ONEDPL_DR_STD_RANGES_NAMESPACE
namespace _ONEDPL_DR_STD_RANGES_NAMESPACE
{

// A standard library range adaptor does not change the rank of a
Expand Down Expand Up @@ -170,6 +170,6 @@ requires(oneapi::dpl::experimental::dr::is_subrange_view_v<std::remove_cvref_t<V
oneapi::dpl::experimental::dr::ranges::segments(first), size);
}

} // namespace __ONEDPL_DR_STD_RANGES_NAMESPACE
} // namespace _ONEDPL_DR_STD_RANGES_NAMESPACE

#endif /* _ONEDPL_DR_DETAIL_SEGMENT_TOOLS_HPP */
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

namespace stdrng = ::std::ranges;

#define __ONEDPL_DR_STD_RANGES_NAMESPACE std::ranges
#define _ONEDPL_DR_STD_RANGES_NAMESPACE std::ranges

#endif /* _ONEDPL_DR_STD_RANGES_SHIM */

Expand Down

0 comments on commit 7c241de

Please sign in to comment.