Skip to content

Commit 2d65db8

Browse files
author
Federico Fissore
committed
Moved LibraryResolutionResult from accessories into types
Signed-off-by: Federico Fissore <[email protected]>
1 parent 9642ec5 commit 2d65db8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: src/arduino.cc/builder/types/accessories.go

-6
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,3 @@ func (queue *UniqueSourceFolderQueue) Pop() interface{} {
7474
func (queue *UniqueSourceFolderQueue) Empty() bool {
7575
return queue.Len() == 0
7676
}
77-
78-
type LibraryResolutionResult struct {
79-
Library *Library
80-
IsLibraryFromPlatform bool
81-
NotUsedLibraries []*Library
82-
}

Diff for: src/arduino.cc/builder/types/types.go

+6
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,9 @@ type SourceFolder struct {
169169
Folder string
170170
Recurse bool
171171
}
172+
173+
type LibraryResolutionResult struct {
174+
Library *Library
175+
IsLibraryFromPlatform bool
176+
NotUsedLibraries []*Library
177+
}

0 commit comments

Comments
 (0)