sishui

Results 6 issues of sishui

ev.c:970:42: error: '_Noreturn' keyword must precede function declarator 我在cmake 生成出来的libev的Makefile 加上-std=c99 就ok了 macosx 10.11上默认是c11,不会cmake,所以没有提pr :)

## GORM Playground Link Database mysql, driver: gorm mysql ``` golang if migrator.HasColumn("TableName", "fieldName") { //... } ``` panic: ``` panic: runtime error: invalid memory address or nil pointer dereference...

type:missing reproduction steps
status:stale

#2622 `test.proto` content ```protobuf syntax = "proto3"; package api; option go_package = "github.com/mypkg/myproject/api"; import "status/status.proto"; # this 3rd-party deps message MyMessage { status.Status status = 1; } ``` I use...

What type of PR is this? fix: https://github.com/cloudwego/fastpb/issues/14 ( pr #13, after rebase, recommit, and `proto-gen-go` using version `1.28.0`) When the file path does differ from the go_package name, the...

**Describe the bug** When the go_package name is customized, the generated `pb.fast.go` is wrong Steps to reproduce the behavior: custom go_package: ```proto option go_package = "github.com/cloudwego/fastpb/examples/fastpb_gen/user/player;playercustom"; ``` although the [official...

```go l := zerolog.New(zerolog.ConsoleWriter{Out: os.Stdout}). With(). Timestamp(). Caller(). Logger() l.Info().Str("level", "level-str").Msg("test string") // invalid, //l.Debug().Int32("level", 9).Msg("test int32") // panic //l.Debug().Int("level", 9).Msg("test int") // panic l.Debug().Int64("level", 9).Msg("test int64") //panic ```