Shouldn't assert declarations be seen in documentation?

2015-05-12 Thread tcak via Digitalmars-d
I am developing a web server - web application system, and it is going to be running on a small system that has 256MB memory at maximum. Hence, I tried to use every bit of memory without wasting, and used align(1) on a struct type. Because it is used as shared, and its internal variables are

Re: Shouldn't assert declarations be seen in documentation?

2015-05-12 Thread John Colvin via Digitalmars-d
On Tuesday, 12 May 2015 at 10:40:48 UTC, tcak wrote: I am developing a web server - web application system, and it is going to be running on a small system that has 256MB memory at maximum. Hence, I tried to use every bit of memory without wasting, and used align(1) on a struct type. Because

Re: Shouldn't assert declarations be seen in documentation?

2015-05-12 Thread tcak via Digitalmars-d
On Tuesday, 12 May 2015 at 10:58:08 UTC, Rikki Cattermole wrote: On 12/05/2015 10:40 p.m., tcak wrote: I am developing a web server - web application system, and it is going to be running on a small system that has 256MB memory at maximum. Hence, I tried to use every bit of memory without

Re: Shouldn't assert declarations be seen in documentation?

2015-05-12 Thread tcak via Digitalmars-d
On Tuesday, 12 May 2015 at 11:14:42 UTC, Rikki Cattermole wrote: On 12/05/2015 11:02 p.m., tcak wrote: On Tuesday, 12 May 2015 at 10:58:08 UTC, Rikki Cattermole wrote: On 12/05/2015 10:40 p.m., tcak wrote: I am developing a web server - web application system, and it is going to be running on

Re: Shouldn't assert declarations be seen in documentation?

2015-05-12 Thread Rikki Cattermole via Digitalmars-d
On 12/05/2015 11:20 p.m., tcak wrote: On Tuesday, 12 May 2015 at 11:14:42 UTC, Rikki Cattermole wrote: On 12/05/2015 11:02 p.m., tcak wrote: On Tuesday, 12 May 2015 at 10:58:08 UTC, Rikki Cattermole wrote: On 12/05/2015 10:40 p.m., tcak wrote: I am developing a web server - web application

Re: Shouldn't assert declarations be seen in documentation?

2015-05-12 Thread Rikki Cattermole via Digitalmars-d
On 12/05/2015 11:02 p.m., tcak wrote: On Tuesday, 12 May 2015 at 10:58:08 UTC, Rikki Cattermole wrote: On 12/05/2015 10:40 p.m., tcak wrote: I am developing a web server - web application system, and it is going to be running on a small system that has 256MB memory at maximum. Hence, I tried

Re: Shouldn't assert declarations be seen in documentation?

2015-05-12 Thread Rikki Cattermole via Digitalmars-d
On 12/05/2015 10:40 p.m., tcak wrote: I am developing a web server - web application system, and it is going to be running on a small system that has 256MB memory at maximum. Hence, I tried to use every bit of memory without wasting, and used align(1) on a struct type. Because it is used as