mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 13:44:31 +01:00
Update xbyak to 5.97
Keeps the library up to date.
This commit is contained in:
commit
8a7a4cb672
48 changed files with 3852 additions and 3816 deletions
6
externals/xbyak/sample/calc.cpp
vendored
6
externals/xbyak/sample/calc.cpp
vendored
|
|
@ -155,9 +155,9 @@ struct Grammar : public boost::spirit::classic::grammar<Grammar> {
|
|||
|
||||
void put(const std::vector<double>& x)
|
||||
{
|
||||
printf("%f", x[0]);
|
||||
for (size_t i = 1, n = x.size(); i < n; i++) {
|
||||
printf(", %f", x[i]);
|
||||
for (size_t i = 0, n = x.size(); i < n; i++) {
|
||||
if (i > 0) printf(", ");
|
||||
printf("%f", x[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue