aboutsummaryrefslogtreecommitdiff
path: root/bytesconv_32.go
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-28 20:47:17 +0200
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-28 20:47:17 +0200
commit58d404c7e9ebfeccf90c988d28490188ae2288c2 (patch)
tree245d6d45a3c14992f4875d237463595aa86eefcd /bytesconv_32.go
parentRemoved flackiness from Logger tests by skipping request duration (diff)
downloadfasthttp-58d404c7e9ebfeccf90c988d28490188ae2288c2.tar.gz
fasthttp-58d404c7e9ebfeccf90c988d28490188ae2288c2.tar.bz2
fasthttp-58d404c7e9ebfeccf90c988d28490188ae2288c2.zip
Issue #7: an attempt to blindly fix arm build according to @msoap suggestion
Diffstat (limited to 'bytesconv_32.go')
-rw-r--r--bytesconv_32.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/bytesconv_32.go b/bytesconv_32.go
new file mode 100644
index 0000000..0777e67
--- /dev/null
+++ b/bytesconv_32.go
@@ -0,0 +1,8 @@
+// +build !amd64
+
+package fasthttp
+
+const (
+ maxIntChars = 9
+ maxHexIntChars = 7
+)