* src/filesystem/ops.cc (is_empty): Fix typo in exception message.
authorJonathan Wakely <jwakely@redhat.com>
Sat, 12 Nov 2016 20:28:55 +0000 (20:28 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Sat, 12 Nov 2016 20:28:55 +0000 (20:28 +0000)
From-SVN: r242341

libstdc++-v3/ChangeLog
libstdc++-v3/src/filesystem/ops.cc

index 4cc16b9ffd7b2596a202e95e3952ca9c37a661bc..c53f0ce10ff711d6312f2e0192bd62b838335c9c 100644 (file)
@@ -1,5 +1,7 @@
 2016-11-12  Jonathan Wakely  <jwakely@redhat.com>
 
+       * src/filesystem/ops.cc (is_empty): Fix typo in exception message.
+
        * include/std/future (future_error): Fix public typo to private.
 
 2016-11-11  Jonathan Wakely  <jwakely@redhat.com>
index 8ed0a105dfa3a78525a620f612dbb398c4797e71..0dcb1b410fc0f3053afe61056a67f89457ff1195 100644 (file)
@@ -1054,7 +1054,7 @@ fs::is_empty(const path& p)
   error_code ec;
   bool e = is_empty(p, ec);
   if (ec)
-    _GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot check is file is empty",
+    _GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot check if file is empty",
                                             p, ec));
   return e;
 }