]> git.llucax.com Git - software/druntime.git/blobdiff - src/compiler/dmd/dmain2.d
* Reclassified most runtime-generated errors as Errors rather than Exceptions. This...
[software/druntime.git] / src / compiler / dmd / dmain2.d
index 8bccd62f258a7c42784ee6b9c37ed70584f04172..29ac5ef580b5db037a557100cacd72764198c03a 100644 (file)
@@ -101,7 +101,7 @@ extern (C) bool rt_unloadLibrary(void* ptr)
  */
 extern (C) void onAssertError(string file, size_t line);
 extern (C) void onAssertErrorMsg(string file, size_t line, string msg);
-extern (C) void onArrayBoundsError(string file, size_t line);
+extern (C) void onRangeError(string file, size_t line);
 extern (C) void onHiddenFuncError(Object o);
 extern (C) void onSwitchError(string file, size_t line);
 extern (C) bool runModuleUnitTests();
@@ -124,7 +124,7 @@ extern (C) static void _d_assert_msg(string msg, string file, uint line)
 
 extern (C) void _d_array_bounds(string file, uint line)
 {
-    onArrayBoundsError(file, line);
+    onRangeError(file, line);
 }
 
 extern (C) void _d_switch_error(string file, uint line)