aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJisi Liu <jisi.liu@gmail.com>2017-12-19 15:23:37 -0800
committerJisi Liu <jisi.liu@gmail.com>2017-12-19 15:23:37 -0800
commit19d0e9934c997b1dc46ad539c37d67ea6c6fc33f (patch)
tree815002eb75d5921c43b54e997fa1327a0d2dd974
parenteff55ece0813c16d318a80ec20c89d81bac34efc (diff)
downloadprotobuf-19d0e9934c997b1dc46ad539c37d67ea6c6fc33f.tar.gz
protobuf-19d0e9934c997b1dc46ad539c37d67ea6c6fc33f.tar.bz2
protobuf-19d0e9934c997b1dc46ad539c37d67ea6c6fc33f.zip
Fix string::back() usage in googletest.cc
-rw-r--r--src/google/protobuf/testing/googletest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/testing/googletest.cc b/src/google/protobuf/testing/googletest.cc
index c329b6c1..b81d3994 100644
--- a/src/google/protobuf/testing/googletest.cc
+++ b/src/google/protobuf/testing/googletest.cc
@@ -132,7 +132,7 @@ string GetTemporaryDirectoryName() {
// with "\\?\") but these will be degenerate in the sense that you cannot
// chdir into such directories (or navigate into them with Windows Explorer)
// nor can you open such files with some programs (e.g. Notepad).
- if (result.back() == '.') {
+ if (result[result.size() - 1] == '.') {
result[result.size() - 1] = '_';
}
// On Win32, tmpnam() returns a file prefixed with '\', but which is supposed