From 47ea63e7ea67614be3214e2553a4181e80bcae71 Mon Sep 17 00:00:00 2001 From: Dero Gharibian Date: Mon, 18 Mar 2019 13:00:09 -0700 Subject: [PATCH] Lint: conform to header guard style. PiperOrigin-RevId: 239043676 --- tensorflow/core/lib/strings/base64.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tensorflow/core/lib/strings/base64.h b/tensorflow/core/lib/strings/base64.h index 48a7f42b81d..cb8f50df11f 100644 --- a/tensorflow/core/lib/strings/base64.h +++ b/tensorflow/core/lib/strings/base64.h @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#ifndef TENSORFLOW_LIB_STRINGS_B64_H_ -#define TENSORFLOW_LIB_STRINGS_B64_H_ +#ifndef TENSORFLOW_CORE_LIB_STRINGS_BASE64_H_ +#define TENSORFLOW_CORE_LIB_STRINGS_BASE64_H_ #include #include "tensorflow/core/lib/core/status.h" @@ -34,4 +34,4 @@ Status Base64Decode(StringPiece data, string* decoded); } // namespace tensorflow -#endif // TENSORFLOW_LIB_STRINGS_B64_H_ +#endif // TENSORFLOW_CORE_LIB_STRINGS_BASE64_H_