|
Revision 87:2212285f714c, 1.1 kB
(checked in by Diggory Hardy <diggory.hardy@gmail.com>, 4 months ago)
|
Added a workaround for a dmd bug.
For some reason the bug showed up after upgrading dsss.
|
| Line | |
|---|
| 1 |
/* LICENSE BLOCK |
|---|
| 2 |
Part of mde: a Modular D game-oriented Engine |
|---|
| 3 |
Copyright © 2007-2008 Diggory Hardy |
|---|
| 4 |
|
|---|
| 5 |
This program is free software: you can redistribute it and/or modify it under the terms |
|---|
| 6 |
of the GNU General Public License as published by the Free Software Foundation, either |
|---|
| 7 |
version 2 of the License, or (at your option) any later version. |
|---|
| 8 |
|
|---|
| 9 |
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
|---|
| 10 |
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 11 |
See the GNU General Public License for more details. |
|---|
| 12 |
|
|---|
| 13 |
You should have received a copy of the GNU General Public License |
|---|
| 14 |
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|---|
| 15 |
|
|---|
| 16 |
/************************************************************************************************** |
|---|
| 17 |
* NOTE: Workaround for this bug: http://d.puremagic.com/issues/show_bug.cgi?id=2371 |
|---|
| 18 |
*************************************************************************************************/ |
|---|
| 19 |
module mde.workaround2371; |
|---|
| 20 |
|
|---|
| 21 |
public import tango.util.container.HashSet; |
|---|
| 22 |
|
|---|
| 23 |
alias HashSet!(char[]) myStringHS; |
|---|