summaryrefslogtreecommitdiff
path: root/cc/cc.go
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2020-03-26 09:40:15 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-03-26 09:40:15 +0000
commitd9578f563e65c90864d756b6876d46aaaa04582b (patch)
tree8f506e124196255a49e0ca374e3dafde89565827 /cc/cc.go
parent282dc32fb668ed04fbb1d112ffcbd7d000ae571d (diff)
parent10566a035f648cd85b9af444b06cc2eb9975a9ef (diff)
Merge "Propagate empty vs unspecified system_shared_libs correctly."
Diffstat (limited to 'cc/cc.go')
-rw-r--r--cc/cc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/cc.go b/cc/cc.go
index 4fba412d5..de07229f9 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -378,7 +378,7 @@ type linker interface {
type specifiedDeps struct {
sharedLibs []string
- systemSharedLibs []string
+ systemSharedLibs []string // Note nil and [] are semantically distinct.
}
type installer interface {