From 8f6936a44597e528283456128472b526ba78f17d Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Mon, 23 Aug 2021 23:12:06 -0400 Subject: [PATCH] 64-bit/32-bit portability --- src/json.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/json.hpp b/src/json.hpp index 2611523..cfb127c 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -701,11 +701,6 @@ public: is_ >> *value; if (is_.fail()) throw PiPedalException("Invalid format."); } - void read(int *value) { - skip_whitespace(); - is_ >> *value; - if (is_.fail()) throw PiPedalException("Invalid format."); - } void read(unsigned int*value) { is_ >> *value;