Re: [racket-users] Struct declaration conflict if a file is required implicitly

2017-07-23 Thread Alejandro Sanchez
Thank you so much! I feel so stupid now, that file path is a leftover from when the directory structure was different. Now it works perfectly. > On 23 Jul 2017, at 17:43, Ryan Culpepper wrote: > > On 07/23/2017 07:26 AM, Alejandro Sanchez wrote: >> Hello everyone, >> I am working on this projec

Re: [racket-users] Struct declaration conflict if a file is required implicitly

2017-07-23 Thread hiphish
On Sunday, July 23, 2017 at 5:43:51 PM UTC+2, Ryan Culpepper wrote: > On 07/23/2017 07:26 AM, Alejandro Sanchez wrote: > > Hello everyone, > > > > I am working on this project: https://gitlab.com/HiPhish/MsgPack.rkt/ > > > > I am writing test cases and I ran into a problem with my ‘ext’ structure

Re: [racket-users] Struct declaration conflict if a file is required implicitly

2017-07-23 Thread Ryan Culpepper
On 07/23/2017 07:26 AM, Alejandro Sanchez wrote: Hello everyone, I am working on this project: https://gitlab.com/HiPhish/MsgPack.rkt/ I am writing test cases and I ran into a problem with my ‘ext’ structure. It is declared in the file ‘msgpack/main.rkt’, which is required in the file ‘msgpac

[racket-users] Struct declaration conflict if a file is required implicitly

2017-07-23 Thread Alejandro Sanchez
Hello everyone, I am working on this project: https://gitlab.com/HiPhish/MsgPack.rkt/ I am writing test cases and I ran into a problem with my ‘ext’ structure. It is declared in the file ‘msgpack/main.rkt’, which is required in the file ‘msgpack/pack.rkt’ (also in ‘msgpack/unpack.rkt’). For my