diff libinterp/corefcn/load-path.cc @ 23807:336f89b6208b

Use character literals 'c' rather than string literals "c" when possible. Better performance when string constructor isn't required. * Figure.cc, __init_qt__.cc, files-dock-widget.cc, file-editor-tab.cc, file-editor.cc, octave-qscintilla.cc, main-window.cc, octave-dock-widget.cc, octave-qt-link.cc, parser.cc, webinfo.cc, resource-manager.cc, settings-dialog.cc, workspace-view.cc, __magick_read__.cc, balance.cc, debug.cc, dynamic-ld.cc, ft-text-renderer.cc, gl-render.cc, gl2ps-print.cc, graphics.cc, hook-fcn.h, input.cc, load-path.cc, load-save.cc, ls-hdf5.cc, oct-hist.cc, oct-stream.cc, pager.cc, pr-output.cc, qz.cc, symtab.cc, symtab.h, tril.cc, __delaunayn__.cc, __init_fltk__.cc, __voronoi__.cc, audioread.cc, ccolamd.cc, colamd.cc, convhulln.cc, ov-base-int.cc, ov-base-mat.cc, ov-base-scalar.cc, ov-base.cc, ov-bool-mat.cc, ov-cell.cc, ov-class.cc, ov-classdef.cc, ov-colon.cc, ov-complex.cc, ov-cx-mat.cc, ov-fcn-handle.cc, ov-fcn-inline.cc, ov-fcn.h, ov-flt-cx-mat.cc, ov-flt-re-mat.cc, ov-java.cc, ov-oncleanup.cc, ov-range.cc, ov-re-mat.cc, ov-re-sparse.cc, ov-str-mat.cc, ov-struct.cc, ov-usr-fcn.cc, ov.cc, octave.cc, bp-table.cc, jit-ir.cc, jit-ir.h, jit-typeinfo.cc, pt-funcall.cc, pt-idx.cc, pt-pr-code.cc, pt.h, Array.cc, CDiagMatrix.cc, CMatrix.cc, CNDArray.cc, CRowVector.cc, CSparse.cc, Range.cc, boolSparse.cc, dDiagMatrix.cc, dMatrix.cc, dNDArray.cc, dRowVector.cc, dSparse.cc, fCDiagMatrix.cc, fCMatrix.cc, fCNDArray.cc, fCRowVector.cc, fDiagMatrix.cc, fMatrix.cc, fNDArray.cc, fRowVector.cc, idx-vector.cc, intNDArray.cc, CollocWt.cc, DASPK.cc, DASRT.cc, DASSL.cc, LSODE.cc, oct-time.cc, cmd-hist.cc, kpse.cc, lo-array-errwarn.cc, lo-regexp.cc, lo-utils.cc, str-vec.cc, url-transfer.cc, main-cli.cc, main-gui.cc, mkoctfile.in.cc: Replace 1-character string literals "c" with the character literal 'c'.
author Rik <rik@octave.org>
date Fri, 28 Jul 2017 15:40:00 -0700
parents 90689bdbe048
children 37f3c4416f2e
line wrap: on
line diff
--- a/libinterp/corefcn/load-path.cc	Fri Jul 28 11:45:07 2017 -0700
+++ b/libinterp/corefcn/load-path.cc	Fri Jul 28 15:40:00 2017 -0700
@@ -921,7 +921,7 @@
         std::string full_name = pkg_di.first;
 
         if (! pname.empty ())
-          full_name = pname + "." + full_name;
+          full_name = pname + '.' + full_name;
 
         move (pkg_di.second, at_end, full_name);
       }
@@ -996,7 +996,7 @@
         std::string full_name = pkg_di.first;
 
         if (! pname.empty ())
-          full_name = pname + "." + full_name;
+          full_name = pname + '.' + full_name;
 
         remove (pkg_di.second, full_name);
       }
@@ -1029,7 +1029,7 @@
         std::string full_name = pkg_di.first;
 
         if (! pname.empty ())
-          full_name = pname + "." + full_name;
+          full_name = pname + '.' + full_name;
 
         add (pkg_di.second, at_end, full_name);
       }
@@ -1607,7 +1607,7 @@
             std::string class_name = cls_fnmap.first;
 
             if (! m_package_name.empty ())
-              class_name = m_package_name + "." + class_name;
+              class_name = m_package_name + '.' + class_name;
 
             l.push_back (class_name);
           }
@@ -1759,7 +1759,7 @@
         fcn_map_type& fm = method_map[class_name];
 
         std::string full_dir_name
-          = sys::file_ops::concat (dir_name, "@" + class_name);
+          = sys::file_ops::concat (dir_name, '@' + class_name);
 
         const dir_info::class_info& ci = cls_ci.second;
 
@@ -1867,7 +1867,7 @@
         fcn_map_type& fn_map = cls_fnmap.second;
 
         std::string full_dir_name
-          = sys::file_ops::concat (dir_name, "@" + class_name);
+          = sys::file_ops::concat (dir_name, '@' + class_name);
 
         for (auto& nm_filst : fn_map)
           {
@@ -1958,7 +1958,7 @@
         fcn_map_type& fn_map = cls_fnmap.second;
 
         std::string full_dir_name
-          = sys::file_ops::concat (dir, "@" + class_name);
+          = sys::file_ops::concat (dir, '@' + class_name);
 
         for (auto& nm_filst : fn_map)
           {
@@ -2096,7 +2096,7 @@
     if (types & load_path::MEX_FILE)
       {
         if (printed_type)
-          os << "|";
+          os << '|';
         os << "mex";
         printed_type = true;
       }
@@ -2104,8 +2104,8 @@
     if (types & load_path::M_FILE)
       {
         if (printed_type)
-          os << "|";
-        os << "m";
+          os << '|';
+        os << 'm';
         printed_type = true;
       }
   }