cc1plus.exe dying

It seems that my cc1plus.exe is dying when I try to compile this code:

https://bitbucket.org/teammetalcow/2013offseason/src

The culprit is somewhere in Subsystems/Parts/CSV.h https://bitbucket.org/teammetalcow/2013offseason/src/f7308deb1312e812879565f41be61e6f6b24e74e/Subsystems/Parts/CSV.h?at=default because when I don’t include that file, everything compiles normally. Otherwise I get this:


Build Started in Project '2013OffSeason':   2013-04-29 18:37:12
Generation of makefiles started.
Generation of makefiles finished (Elapsed Time: 00:00).
Platform: Wind River VxWorks 6.3
Command: make --no-print-directory BUILD_SPEC=PPC603gnu DEBUG_MODE=1 TRACE=1
Working Directory: C:/WindRiver/workspace/2013OffSeason/PPC603gnu
if  ! -d "`dirname "2013OffSeason_partialImage/Debug/Objects/2013OffSeason/2013OffSeason.o"`" ]; then mkdir -p "`dirname "2013OffSeason_partialImage/Debug/Objects/2013OffSeason/2013OffSeason.o"`"; fi;echo "building 2013OffSeason_partialImage/Debug/Objects/2013OffSeason/2013OffSeason.o"; ccppc -g -mcpu=603 -mstrict-align -mno-implicit-fp  -mlongcall -ansi -Wall  -MD -MP -mlongcall  -IC:/WindRiver/vxworks-6.3/target/h/WPILib -IC:/WindRiver/vxworks-6.3/target/h -IC:/WindRiver/vxworks-6.3/target/h/wrn/coreip   -DCPU=PPC603 -DTOOL_FAMILY=gnu -DTOOL=gnu -D_WRS_KERNEL    -o "2013OffSeason_partialImage/Debug/Objects/2013OffSeason/2013OffSeason.o" -c "C:/WindRiver/workspace/2013OffSeason/2013OffSeason.cpp"
building 2013OffSeason_partialImage/Debug/Objects/2013OffSeason/2013OffSeason.o
C:\WindRiver\vxworks-6.3\host\x86-win32\bin\make.exe: *** [2013OffSeason_partialImage/Debug/Objects/2013OffSeason/2013OffSeason.o] Error 1
Build Failed in Project '2013OffSeason' (Process Exit Value was 2):   2013-04-29 18:37:19   (Elapsed Time: 00:06)

Along with a popup warning that cc1plus.exe has stopped responding.

Googling has done me no good. Any help???

Edit: Fixed it. (My posting here and then fixing my errors is getting ridiculous… but Ill leave this here for anyone who has this issue)
Somewhat related to this… http://lists.gnu.org/archive/html/bug-gplusplus/2002-03/msg00013.html
The issue was creating a large array. For some reason the compiler did not like that. (It was 256 elements long, now 20) So just shortened the array since I didn’t really need that much, it fixed it.