Skip to content

Commit d090e6a

Browse files
committed
Merge branch 'odb-chipinst' into odb-chipregion
2 parents bb6b307 + 2baf8b6 commit d090e6a

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

src/odb/src/codeGenerator/gen.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ def add_field_attributes(field, klass, flags_struct, schema):
129129
field["hashTableType"] = get_hash_table_type(field["type"])
130130
field["isPassByRef"] = is_pass_by_ref(field["type"])
131131
field.setdefault("flags", [])
132-
field["isSetByRef"] = 'set-const-ref' in field['flags'] or is_set_by_ref(field["type"])
132+
field["isSetByRef"] = "set-const-ref" in field["flags"] or is_set_by_ref(
133+
field["type"]
134+
)
133135
if "argument" not in field:
134136
field["argument"] = field["name"].strip("_")
135137
if "private" in field["flags"]:

src/odb/test/cpp/BUILD

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,4 @@ cc_test(
6565
],
6666
)
6767

68-
cc_test(
69-
name = "TestChips",
70-
srcs = ["TestChips.cpp"],
71-
deps = [
72-
"//src/odb",
73-
"//src/utl",
74-
"@googletest//:gtest",
75-
"@googletest//:gtest_main",
76-
],
77-
)
7868
# TODO: more to come.

0 commit comments

Comments
 (0)