diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-27 00:05:45 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-27 00:05:45 +0200 |
commit | 420bfbcac8d3bc377e325ca78ecc73c192a7b03f (patch) | |
tree | 720d2a225b4289a07bcd375c3db371e687cb48a6 /sqlite3_usleep_windows.go | |
parent | Merge pull request #568 from GJRTimmer/fix/usleep (diff) | |
download | golite-420bfbcac8d3bc377e325ca78ecc73c192a7b03f.tar.gz golite-420bfbcac8d3bc377e325ca78ecc73c192a7b03f.tar.xz |
fmt update
Fix: Placed all +build tags in the same location
Fix: Split CFLAGS, LDFLAGS into seperate lines for readability and lookup
Fix: Placed empty line between copyright comments and build tags for readability
Fix: Placed OS specfic cgo flags at the end if the cgo sections contains multiple lines.
Diffstat (limited to 'sqlite3_usleep_windows.go')
-rw-r--r-- | sqlite3_usleep_windows.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite3_usleep_windows.go b/sqlite3_usleep_windows.go index d439b53..1971a48 100644 --- a/sqlite3_usleep_windows.go +++ b/sqlite3_usleep_windows.go @@ -1,10 +1,10 @@ -// +build cgo - // Copyright (C) 2018 G.J.R. Timmer <gjr.timmer@gmail.com>. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo + package sqlite3 // usleep is a function available on *nix based systems. |