Add support for extern "C++" - no warning should be issued as was previously occurring

This commit is contained in:
William S Fulton 2013-02-08 18:55:16 +00:00
commit 8778724768
5 changed files with 16 additions and 2 deletions

View file

@ -43,5 +43,9 @@ public class cpp0x_thread_local_runme {
cpp0x_thread_local.setEctval(-55);
if (cpp0x_thread_local.getEctval() != -55)
throw new RuntimeException();
cpp0x_thread_local.setEcpptval(-66);
if (cpp0x_thread_local.getEcpptval() != -66)
throw new RuntimeException();
}
}