Skip to content

Commit

Permalink
Fix #34: pnm.h / using namespace detail::literals
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Feb 4, 2023
1 parent fde73fd commit aad5685
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hello_imgui/internal/pnm.h
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,8 @@ namespace pnm
template<typename Alloc = std::allocator<bit_pixel>>
image<bit_pixel, Alloc> read_pbm_ascii(const std::string& fname)
{
using detail::literals::operator"" _str;
// using detail::literals::operator"" _str;
using namespace detail::literals;

std::ifstream ifs(fname);
if(!ifs.good())
Expand Down

0 comments on commit aad5685

Please sign in to comment.