You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiler then throws an error saying 53687091200 is outside the range of Int. If I convert this to a long (53687091200L), it works. But this adds a manual element to the code generation; I must now manually fix this every time I use tscfg regenerate the code.
The text was updated successfully, but these errors were encountered:
First of all, I'd like to thank you for this library. This makes mapping Typesafe config files to objects a breeze!
I'm noticing an issue with the string-to-bytes conversion. If I specify a large number, such as:
The resulting code is generated as:
The compiler then throws an error saying 53687091200 is outside the range of
Int
. If I convert this to a long (53687091200L), it works. But this adds a manual element to the code generation; I must now manually fix this every time I use tscfg regenerate the code.The text was updated successfully, but these errors were encountered: