Ok, curious error while building with Visual Studio Ultimate 2012 (probably issue with ANSI, unicode etc) in the code...
switch (input[index])
{
case 'א': // Alef Hebrew character
if (/*conditional*/)
{
// Do stuff.
}
break;
case 'ב': // Beth Hebrew character
if (/*conditional*/)
{
//Do stuff
}
break;
default:
{
//Do some other stuff.
}
break;
}
The second case parameter generates...
Error C2196: case value '?' already used
Simple fix if possible.