From d0da14404ef7cc960ef01bbf97775ead08d3c477 Mon Sep 17 00:00:00 2001
From: Stefan Reinhold <stefan@sreinhold.com>
Date: Tue, 4 Sep 2018 15:34:18 +0200
Subject: [PATCH] Fix include for std::isspace, fixes #621 (#622)

---
 src/binary.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/binary.cpp b/src/binary.cpp
index b987375..4db6d0b 100644
--- a/src/binary.cpp
+++ b/src/binary.cpp
@@ -1,6 +1,6 @@
 #include "yaml-cpp/binary.h"
 
-#include <ctype.h>
+#include <cctype>
 
 namespace YAML {
 static const char encoding[] =
-- 
GitLab