Skip to content

Commit 0e4d300

Browse files
committed
Investigating why AppVeyor is failing by breaking out the individual pieces
1 parent f36fd05 commit 0e4d300

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

include/nlohmann/detail/input/input_adapters.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,10 @@ using std::end;
443443
template<typename ContainerType, typename Enable = void>
444444
struct container_input_adapter_factory {};
445445

446+
using bob = decltype(begin(std::declval<std::string>()), end(std::declval<std::string>()));
447+
using george = void_t<bob>;
448+
using alice = decltype(input_adapter(begin(std::declval<std::string>()), end(std::declval<std::string>())));
449+
446450
template<typename ContainerType>
447451
struct container_input_adapter_factory< ContainerType,
448452
void_t<decltype(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))>>

0 commit comments

Comments
 (0)