Displaying 5 results from an estimated 5 matches for "range_error".
2010 Sep 09
0
calling Rf_initEmbeddedR error
...// -----> success
UNPROTECT(1);
// Function load
SEXP fun;
PROTECT(e = allocVector(LANGSXP, 3));
fun = findFun(install("hreg"), R_GlobalEnv);
if(fun == R_NilValue) // -----> success
{
UNPROTECT(1);
throw std::range_error("R Function not found");
}
SETCAR(e, fun);
UNPROTECT(1);
// End R
R_dot_Last();
Rf_endEmbeddedR(0);
R_gc();
/////////////////////////////
// Init R(second)
Rf_initEmbeddedR(Argc2, Argv2);
// R package load
e = R_NilValue;...
2007 Mar 20
2
BETA testers for xlsReadWrite? (natively read/write Excelfiles)
...t this package is made with Delphi and
contains Object Pascal code. It doesn't matter normally but now I
mention it, because this evening I got the brand new Delphi 2007 and
xlsReadWrite was the thing used to try out this (very good) new
version...
--
Regards,
Hans-Peter
PS: @David: no more range_error violations.
2020 Jan 13
2
Incorrect code generation when using -fprofile-generate on code which contains exception handling (Windows target)
...int main() {
// Without PGO, test runs and prints result.
// With -fprofile-generate, program seg-faults without printing.
run_test();
return 0;
}
__attribute__((noinline))
void may_throw(int x) {
if (x > 10)
throw std::range_error("value out of range");
}
On Windows, build with: clang -O2 -fprofile-generate test.cpp
When profiling is enabled the program will seg fault without printing anything. Without the -fprofile-generate flag, the program will run successfully.
The compiler...
2020 Jan 14
2
Incorrect code generation when using -fprofile-generate on code which contains exception handling (Windows target)
...test runs and prints result.
> // With -fprofile-generate, program seg-faults without printing.
> run_test();
> return 0;
> }
>
> __attribute__((noinline))
> void may_throw(int x) {
> if (x > 10)
> throw std::range_error("value out of range");
> }
>
>
> On Windows, build with: clang -O2 -fprofile-generate test.cpp
>
> When profiling is enabled the program will seg fault without printing
> anything. Without the -fprofile-generate flag, the program will run
> successful...
2017 Oct 13
0
Wine release 2.19
...the build directory.
Bernhard Übelacker (1):
advapi32: Fix ChangeServiceConfig2 when given a null description.
Daniel Lehman (3):
msvcp120: Implement concurrent_vector::_Segment_index_of.
msvcp120/tests: Add tests for concurrent_vector::_Segment_index_of.
msvcp90: Add std::range_error table.
Dmitry Kislyuk (2):
vbscript: Improve parsing of separators in loops and switches.
vbscript: Improve parsing of separators after Option Explicit.
Fabian Maurer (12):
dxva2api.idl: Don't redefine REFERENCE_TIME if it's already defined.
regedit: Don't cras...