Skip to content

Commit 0692153

Browse files
authored
Add missing header include guards and array dep. (#87)
1 parent a94611c commit 0692153

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

absl/BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ cc_library(
55
hdrs = ["absl.h"],
66
visibility = ["//visibility:public"],
77
deps = [
8+
"//:array",
89
"@com_google_absl//absl/strings:str_format",
910
],
1011
)

absl/absl.h

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef NDARRAY_ABSL_ABSL_H
2+
#define NDARRAY_ABSL_ABSL_H
3+
14
#include "absl/strings/str_format.h"
25
#include "absl/strings/str_join.h"
36
#include "array/array.h"
@@ -36,3 +39,5 @@ void AbslStringify(Sink& sink, const shape<Dims...>& sh) {
3639
}
3740

3841
} // namespace nda
42+
43+
#endif // NDARRAY_ABSL_ABSL_H

0 commit comments

Comments
 (0)