We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c46c4a9 commit 1efcc2eCopy full SHA for 1efcc2e
include/mrdocs/Support/Handlebars.hpp
@@ -268,7 +268,9 @@ class MRDOCS_DECL OutputRef
268
@param os The output stream to write to
269
*/
270
template <detail::LHROStreamable Os>
271
- requires std::is_convertible_v<Os*, std::ostream*>
+ requires
272
+ std::is_convertible_v<Os*, std::ostream*> &&
273
+ (!detail::StdLHROStreamable<Os>)
274
OutputRef( Os& os )
275
: out_( &os )
276
, fptr_( &write_to_output<Os> )
0 commit comments