diff options
Diffstat (limited to 'comms/svxlink/files/patch-misc_common.h')
-rw-r--r-- | comms/svxlink/files/patch-misc_common.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/comms/svxlink/files/patch-misc_common.h b/comms/svxlink/files/patch-misc_common.h deleted file mode 100644 index 9a219170e6ff..000000000000 --- a/comms/svxlink/files/patch-misc_common.h +++ /dev/null @@ -1,13 +0,0 @@ ---- misc/common.h.orig 2013-09-14 03:27:37.000000000 -0700 -+++ misc/common.h 2014-04-20 22:45:31.000000000 -0700 -@@ -119,7 +119,9 @@ - static bool setValueFromString(ValueType &val, const std::string &str) - { - std::istringstream ss(str); -- ss >> std::noskipws >> val >> std::ws; -+ ss >> std::noskipws >> val; -+ if(!ss.eof()) -+ ss >> std::ws; - return !ss.fail() && ss.eof(); - } /* setValueFromString */ - |