From 73e7cfb26ac0a1483f8cfa0e114d851d27ac9552 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Fri, 18 Dec 2020 14:55:58 -0500 Subject: [PATCH] Const --- src/VCBackend.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/VCBackend.cpp b/src/VCBackend.cpp index c7ef6e6551..feab33085f 100644 --- a/src/VCBackend.cpp +++ b/src/VCBackend.cpp @@ -565,8 +565,8 @@ void CVS::scanMaster() LYXERR(Debug::LYXVC, "LyXVC::CVS: scanMaster. \n Checking: " << master_); // Ok now we do the real scan... ifstream ifs(master_.toFilesystemEncoding().c_str()); - string name = onlyFileName(owner_->absFileName()); - string tmpf = '/' + name + '/'; + string const name = onlyFileName(owner_->absFileName()); + string const tmpf = '/' + name + '/'; LYXERR(Debug::LYXVC, "\tlooking for `" << tmpf << '\''); string line; static regex const reg("/(.*)/(.*)/(.*)/(.*)/(.*)"); @@ -589,8 +589,8 @@ void CVS::scanMaster() //sm[5]; // tag or tagdate FileName file(owner_->absFileName()); if (file.isReadableFile()) { - time_t mod = file.lastModified(); - string mod_date = rtrim(asctime(gmtime(&mod)), "\n"); + time_t const mod = file.lastModified(); + string const mod_date = rtrim(asctime(gmtime(&mod)), "\n"); LYXERR(Debug::LYXVC, "Date in Entries: `" << file_date << "'\nModification date of file: `" << mod_date << '\''); if (file.isReadOnly()) {