Skip to content

Commit

Permalink
deploy: 02978c6
Browse files Browse the repository at this point in the history
  • Loading branch information
andrjohns committed Dec 24, 2023
1 parent b8b3306 commit 3503a47
Show file tree
Hide file tree
Showing 20 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/macosx/big-sur-x86_64/contrib/4.3/PACKAGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Imports: Rcpp, RcppParallel, posterior, methods, stats, callr
LinkingTo: Rcpp, RcppEigen, BH, RcppParallel
Suggests: testthat (>= 3.0.0)
License: MIT + file LICENSE
MD5sum: 6c0708f0b1e4d6791924886fb1b0b1c5
MD5sum: 6edfa7d02af545f416911a54e084b71a
Binary file modified bin/macosx/big-sur-x86_64/contrib/4.3/PACKAGES.gz
Binary file not shown.
Binary file modified bin/macosx/big-sur-x86_64/contrib/4.3/PACKAGES.rds
Binary file not shown.
Binary file modified bin/macosx/big-sur-x86_64/contrib/4.3/StanEstimators_0.0.0.9000.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion bin/macosx/contrib/4.2/PACKAGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Imports: Rcpp, RcppParallel, posterior, methods, stats, callr
LinkingTo: Rcpp, RcppEigen, BH, RcppParallel
Suggests: testthat (>= 3.0.0)
License: MIT + file LICENSE
MD5sum: 3cadbfbfcb76c12b84e94f04d38a3e1a
MD5sum: 111253a15bbf403d762c356615dd61ec
Binary file modified bin/macosx/contrib/4.2/PACKAGES.gz
Binary file not shown.
Binary file modified bin/macosx/contrib/4.2/PACKAGES.rds
Binary file not shown.
Binary file modified bin/macosx/contrib/4.2/StanEstimators_0.0.0.9000.tgz
Binary file not shown.
Binary file modified bin/windows/contrib/4.2/StanEstimators_0.0.0.9000.zip
Binary file not shown.
Binary file modified bin/windows/contrib/4.3/StanEstimators_0.0.0.9000.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
15 changes: 14 additions & 1 deletion inst/include/rapidjson/reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -555,23 +555,35 @@ class GenericReader {
*/
template <unsigned parseFlags, typename InputStream, typename Handler>
ParseResult Parse(InputStream& is, Handler& handler) {
if (parseFlags & kParseIterativeFlag)
Rcpp::Rcout << "f4231" << std::endl;
if (parseFlags & kParseIterativeFlag) {
Rcpp::Rcout << "f4232" << std::endl;
return IterativeParse<parseFlags>(is, handler);
}
Rcpp::Rcout << "f4233" << std::endl;

parseResult_.Clear();

ClearStackOnExit scope(*this);

Rcpp::Rcout << "f4234" << std::endl;
SkipWhitespaceAndComments<parseFlags>(is);
Rcpp::Rcout << "f4235" << std::endl;
RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_);

Rcpp::Rcout << "f4236" << std::endl;
if (RAPIDJSON_UNLIKELY(is.Peek() == '\0')) {
Rcpp::Rcout << "f4237" << std::endl;
RAPIDJSON_PARSE_ERROR_NORETURN(kParseErrorDocumentEmpty, is.Tell());
Rcpp::Rcout << "f4238" << std::endl;
RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_);
}
else {
Rcpp::Rcout << "f4239" << std::endl;
ParseValue<parseFlags>(is, handler);
Rcpp::Rcout << "f423.10" << std::endl;
RAPIDJSON_PARSE_ERROR_EARLY_RETURN(parseResult_);
Rcpp::Rcout << "f423.11" << std::endl;

if (!(parseFlags & kParseStopWhenDoneFlag)) {
SkipWhitespaceAndComments<parseFlags>(is);
Expand All @@ -584,6 +596,7 @@ class GenericReader {
}
}

Rcpp::Rcout << "f423" << std::endl;
return parseResult_;
}

Expand Down
2 changes: 1 addition & 1 deletion src/contrib/PACKAGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Imports: Rcpp, RcppParallel, posterior, methods, stats, callr
LinkingTo: Rcpp, RcppEigen, BH, RcppParallel
Suggests: testthat (>= 3.0.0)
License: MIT + file LICENSE
MD5sum: 608d2d72768adf7df7b4d16c1eb97d51
MD5sum: e7c5d3e07dfd2c388aff655df9391a44
NeedsCompilation: yes
Binary file modified src/contrib/PACKAGES.gz
Binary file not shown.
Binary file modified src/contrib/PACKAGES.rds
Binary file not shown.
Binary file modified src/contrib/StanEstimators_0.0.0.9000.tar.gz
Binary file not shown.

0 comments on commit 3503a47

Please sign in to comment.