diff options
author | Stephen Hurd <shurd@FreeBSD.org> | 2015-01-07 12:12:22 +0000 |
---|---|---|
committer | Stephen Hurd <shurd@FreeBSD.org> | 2015-01-07 12:12:22 +0000 |
commit | 7d6f65abc1d861601be2d689192c0faaff02b662 (patch) | |
tree | e91f4546304ffe6c2ad19bd5e7186b1e306cdf1a /comms/svxlink/files/patch-misc_common.h | |
parent | - Update to 1.03 (diff) |
Update to 14.08
Switch to cmake
Switch to github
Add the STATIC, DOCS, ALSA, and OSS options
Make a master port so comms/qtel can be a slave port
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 */ - |