about summary refs log tree commit diff
diff options
context:
space:
mode:
authornlewycky <nicholas@mxc.ca>2020-01-13T19·12-0800
committervslashg <gfalcon@google.com>2020-01-13T19·12-0500
commita2e6adecc294dc4cd98cc285a9134ce58e0f2ad0 (patch)
tree92ff360c7a88e78abd4a91dd880cf6e02465e5c6
parent564001ae506a17c51fa1223684a78f05f91d3d91 (diff)
Use https links. (#586)
-rw-r--r--absl/base/macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/base/macros.h b/absl/base/macros.h
index 7565f02224f5..547f93bafba9 100644
--- a/absl/base/macros.h
+++ b/absl/base/macros.h
@@ -112,7 +112,7 @@ ABSL_NAMESPACE_END
 // when  performing switch labels fall-through diagnostic
 // (`-Wimplicit-fallthrough`). See clang documentation on language extensions
 // for details:
-// http://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough
+// https://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough
 //
 // When used with unsupported compilers, the ABSL_FALLTHROUGH_INTENDED macro
 // has no effect on diagnostics. In any case this macro has no effect on runtime
@@ -168,7 +168,7 @@ ABSL_NAMESPACE_END
 // Used on a function overload to trap bad calls: any call that matches the
 // overload will cause a compile-time error. This macro uses a clang-specific
 // "enable_if" attribute, as described at
-// http://clang.llvm.org/docs/AttributeReference.html#enable-if
+// https://clang.llvm.org/docs/AttributeReference.html#enable-if
 //
 // Overloads which use this macro should be bracketed by
 // `#ifdef ABSL_BAD_CALL_IF`.