about summary refs log tree commit diff
path: root/src/libutil/util.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2017-08-18T10·01+0200
committerGitHub <noreply@github.com>2017-08-18T10·01+0200
commite56e79064212f58a5ce775f75b6c91f05721043a (patch)
treec0a7797bba12e237ed5643c066fe50b51b357872 /src/libutil/util.hh
parente2f9a61dc95f8f0ee51995ad88f4c5d5bd0e7740 (diff)
parent6bb4e3e8fe30a09d174a04295ba074ee006ebb4f (diff)
Merge pull request #1525 from wingo/remove-buggy-octal-decoder
Remove unused decodeOctalEscaped
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r--src/libutil/util.hh6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh
index 35909c8d5b31..7340ca6c7478 100644
--- a/src/libutil/util.hh
+++ b/src/libutil/util.hh
@@ -349,12 +349,6 @@ bool hasSuffix(const string & s, const string & suffix);
 std::string toLower(const std::string & s);
 
 
-/* Escape a string that contains octal-encoded escape codes such as
-   used in /etc/fstab and /proc/mounts (e.g. "foo\040bar" decodes to
-   "foo bar"). */
-string decodeOctalEscaped(const string & s);
-
-
 /* Exception handling in destructors: print an error message, then
    ignore the exception. */
 void ignoreException();