TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ skip_whitespace()

template<typename BasicJsonType , typename InputAdapterType >
void nlohmann::detail::lexer< BasicJsonType, InputAdapterType >::skip_whitespace ( )
inline

Definition at line 8107 of file json.hpp.

8108 {
8109 do
8110 {
8111 get();
8112 }
8113 while (current == ' ' || current == '\t' || current == '\n' || current == '\r');
8114 }
char_int_type current
the current character
Definition: json.hpp:8219