Skip to content

Commit 96f1270

Browse files
Tensorstore Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 783386711 Change-Id: I91cb91773167002f0357003f6946a54671d36d0b
1 parent aa311e6 commit 96f1270

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

tensorstore/internal/BUILD

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,9 @@ tensorstore_cc_library(
401401
tensorstore_cc_library(
402402
name = "gdb_scripting",
403403
hdrs = ["gdb_scripting.h"],
404-
deps = ["@abseil-cpp//absl/base:core_headers"],
404+
deps = [
405+
"@abseil-cpp//absl/base:core_headers",
406+
],
405407
)
406408

407409
tensorstore_cc_library(

tensorstore/internal/gdb_scripting.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@
1818
// GDB script registration not supported.
1919
#define TENSORSTORE_GDB_AUTO_SCRIPT(name) // noop
2020

21+
// LLDB script registration not supported.
22+
#define TENSORSTORE_LLDB_AUTO_SCRIPT(name) // noop
23+
2124
#endif // TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_

tensorstore/util/span.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "tensorstore/internal/gdb_scripting.h"
3333
#include "tensorstore/internal/meta/attributes.h"
3434

35-
TENSORSTORE_GDB_AUTO_SCRIPT("span_gdb.py")
35+
TENSORSTORE_LLDB_AUTO_SCRIPT("span_lldb.py")
3636

3737
namespace tensorstore {
3838

0 commit comments

Comments
 (0)