summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/bitary.cc
Commit message (Collapse)AuthorAgeFilesLines
* More formatting fixes for return (...);Neil Moore2013-11-151-1/+1
|
* Add a copy constructor to bit_vector (xFleury)Pete Hurst2013-05-191-0/+8
| | | | | This caused an error with clouds and LOS due to an implicit copy having undefined behaviour and not working properly in MSVC.
* Include debug.h earlier.Adam Borowski2013-04-261-2/+0
| | | | | Via externs.h -> bitary.h, it was effectively included by everything anyway, and this way simplifies include chains.
* Rename bit_array to bit_vector.Adam Borowski2012-07-261-9/+9
|
* Some more return deparenthesization.Adam Borowski2012-07-051-2/+2
|
* Drop parentheses around scalar values in "return".Adam Borowski2012-07-051-1/+1
|
* Fixed-width bit arrays, a good deal faster than dynamic ones.Adam Borowski2011-04-071-2/+0
|
* Make file headers doxygen-friendly, drop useless fields.Adam Borowski2011-03-281-5/+4
| | | | | | | "File:" is shown in your editor's status bar. "Written by:" was used only for the first person who changed a file. We got git for that now, and pre-DCSS history is so woefully inaccurate it doesn't really matter.
* Nuke a whole lot of old-style casts, and remove some casts completelyHaran Pilpel2010-01-291-1/+1
| | | | | (you don't need to cast an X* to a void* and you don't need to cast arguments to math.h functions such as sqrt.)
* Implement bit array class.Robert Vollmert2009-10-101-0/+76