Merge pull request #299 from 4gophers/master

Patch for #298
This commit is contained in:
Manu Mtz.-Almeida 2015-05-23 01:36:15 +02:00
commit a373dc0deb
1 changed files with 3 additions and 3 deletions

View File

@ -12,12 +12,12 @@ import (
) )
const ( const (
ErrorTypeBind = 1 << 31 ErrorTypeBind = 1 << 30
ErrorTypeRender = 1 << 30 ErrorTypeRender = 1 << 29
ErrorTypePrivate = 1 << 0 ErrorTypePrivate = 1 << 0
ErrorTypePublic = 1 << 1 ErrorTypePublic = 1 << 1
ErrorTypeAny = 0xffffffff ErrorTypeAny = 0xfffffff
ErrorTypeNu = 2 ErrorTypeNu = 2
) )