fix: remove pointer in elf Case
Some checks failed
build / build (pull_request) Failing after 43s
build / trigger-build-image (pull_request) Has been skipped
build / build (push) Failing after 45s
build / trigger-build-image (push) Has been skipped

This commit is contained in:
张泊明518370910136 2024-06-15 01:01:57 -04:00 committed by 张泊明518370910136
parent d5454a1abd
commit 06ce9ad92b

View File

@ -20,12 +20,12 @@ type Report struct {
type Case struct {
Binders []Binder `mapstructure:"binders"`
Context *string `mapstructure:"context"`
Depths *int `mapstructure:"depths"`
Code *string `mapstructure:"code"`
Plain *int `mapstructure:"plain"`
Weighed *float64 `mapstructure:"weighed"`
Detail *string `mapstructure:"detail"`
Context string `mapstructure:"context"`
Depths int `mapstructure:"depths"`
Code string `mapstructure:"code"`
Plain int `mapstructure:"plain"`
Weighed float64 `mapstructure:"weighed"`
Detail string `mapstructure:"detail"`
SimilarityRate float64 `mapstructure:"similarity_rate"`
Sources []Source `mapstructure:"srcs"`
}