]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/googletest/googletest/include/gtest/internal/gtest-string.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / googletest / googletest / include / gtest / internal / gtest-string.h
index 0b2a91a5dce1e21c460fb950ce17e1f6112042e6..323a36e64fa12bceddefcbd65765bd83f73a64c9 100644 (file)
@@ -149,6 +149,9 @@ class GTEST_API_ String {
   // Formats an int value as "%02d".
   static std::string FormatIntWidth2(int value);  // "%02d" for width == 2
 
+  // Formats an int value to given width with leading zeros.
+  static std::string FormatIntWidthN(int value, int width);
+
   // Formats an int value as "%X".
   static std::string FormatHexInt(int value);