diff options
author | Abseil Team <absl-team@google.com> | 2020-09-29 12:37:57 -0700 |
---|---|---|
committer | Andy Getz <durandal@google.com> | 2020-09-29 18:20:00 -0400 |
commit | 1fd58b69c62d1bb590a4860b0db30212b2fd2af4 (patch) | |
tree | fadc28643212042054cacd58f0b1ec2d184378e4 /absl/base | |
parent | d1de75bf540f091b4dfc860713d556e578c0f158 (diff) |
Export of internal Abseil changes
--
dad7313f7e8c36c35fc213ce5110100595f90990 by Andy Getzendanner <durandal@google.com>:
Fix log_severity.h header guard to match path.
PiperOrigin-RevId: 334439123
--
8a58aa0f4171219d38fb49a2e008e249f86de4cb by Abseil Team <absl-team@google.com>:
Minor comment cleanup
PiperOrigin-RevId: 334409054
--
a1bc324e53c358b874f99b3f5624658fff99453e by Evan Brown <ezb@google.com>:
Cleanup in btree.h:
- Combine internal_locate_impls and update comments.
- Avoid use of auto with SearchResult.
- Change one iterator reference to be stored by value (copy is cheap).
PiperOrigin-RevId: 334396951
GitOrigin-RevId: dad7313f7e8c36c35fc213ce5110100595f90990
Change-Id: I79862795abd3169587f5bafe0e5369bdde90c1e1
Diffstat (limited to 'absl/base')
-rw-r--r-- | absl/base/log_severity.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/base/log_severity.h b/absl/base/log_severity.h index 65a3b166..045f17f8 100644 --- a/absl/base/log_severity.h +++ b/absl/base/log_severity.h @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef ABSL_BASE_INTERNAL_LOG_SEVERITY_H_ -#define ABSL_BASE_INTERNAL_LOG_SEVERITY_H_ +#ifndef ABSL_BASE_LOG_SEVERITY_H_ +#define ABSL_BASE_LOG_SEVERITY_H_ #include <array> #include <ostream> @@ -118,4 +118,4 @@ std::ostream& operator<<(std::ostream& os, absl::LogSeverity s); ABSL_NAMESPACE_END } // namespace absl -#endif // ABSL_BASE_INTERNAL_LOG_SEVERITY_H_ +#endif // ABSL_BASE_LOG_SEVERITY_H_ |