<feed xmlns='http://www.w3.org/2005/Atom'>
<title>yuzu-mainline/src/web_service, branch master</title>
<subtitle>A backup of the Yuzu mainline repo. Only includes the master branch, nothing else.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/'/>
<entry>
<title>web_backend: Fix compilation</title>
<updated>2024-02-06T14:48:04+00:00</updated>
<author>
<name>FearlessTobi</name>
<email>thm.frey@gmail.com</email>
</author>
<published>2024-02-06T14:48:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=c0a383d9601178c5be8a3128c9cd7155001dcf4d'/>
<id>c0a383d9601178c5be8a3128c9cd7155001dcf4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>web_backend: Sync with Citra implementation</title>
<updated>2024-02-04T15:51:52+00:00</updated>
<author>
<name>FearlessTobi</name>
<email>thm.frey@gmail.com</email>
</author>
<published>2024-02-04T15:51:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=9ade941de121eb5476e1a3bff4dcc4e57cd2b16d'/>
<id>9ade941de121eb5476e1a3bff4dcc4e57cd2b16d</id>
<content type='text'>
While porting https://github.com/citra-emu/citra/pull/7347, I noticed the code of yuzu was not up-to-date with the implementation from Citra.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While porting https://github.com/citra-emu/citra/pull/7347, I noticed the code of yuzu was not up-to-date with the implementation from Citra.
</pre>
</div>
</content>
</entry>
<entry>
<title>Warnings cleanup for GCC 13 and Clang 16</title>
<updated>2023-08-25T23:22:31+00:00</updated>
<author>
<name>comex</name>
<email>comexk@gmail.com</email>
</author>
<published>2023-08-20T20:05:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=91eb5afd0b7c75213763d379638bac6d53548557'/>
<id>91eb5afd0b7c75213763d379638bac6d53548557</id>
<content type='text'>
Note: For GCC there are still a huge number of `-Warray-bounds` warnings
coming from `externals/dynarmic`.  I could have added a workaround in
`externals/CMakeLists.txt` similar to what this PR does for other
externals, but given Dynarmic's close affiliation with Yuzu, it would be
better to fix it upstream.

Besides that, on my machine, this makes the build warning-free except
for some warnings from glslangValidator and AutoMoc.

Details:

- Disable some warnings in externals.

- Disable `-Wnullability-completeness`, which is a Clang warning triggered
  by the Vulkan SDK where if any pointers in the header are marked
  _Nullable, it wants all pointers to be marked _Nullable or _Nonnull.
  Most of them are, but some aren't.  Who knows why.

- `src/web_service/verify_user_jwt.cpp`: Disable another warning when
  including `jwt.hpp`.

- `src/input_common/input_poller.cpp`: Add missing `override` specifiers.

- src/common/swap.h: Remove redundant `operator&amp;`.  In general, this
  file declares three overloads of each operator.  Using `+` as an
  example, the overloads are:

  - a member function for `swapped_t + integer`
  - a member function for `swapped_t + swapped_t`
  - a free function for `integer + swapped_t`

  But for `operator&amp;`, there was an additional free function for
  `swapped_t + integer`, which was redundant with the member function.
  This caused a GCC warning saying "ISO C++ says that these are
  ambiguous".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note: For GCC there are still a huge number of `-Warray-bounds` warnings
coming from `externals/dynarmic`.  I could have added a workaround in
`externals/CMakeLists.txt` similar to what this PR does for other
externals, but given Dynarmic's close affiliation with Yuzu, it would be
better to fix it upstream.

Besides that, on my machine, this makes the build warning-free except
for some warnings from glslangValidator and AutoMoc.

Details:

- Disable some warnings in externals.

- Disable `-Wnullability-completeness`, which is a Clang warning triggered
  by the Vulkan SDK where if any pointers in the header are marked
  _Nullable, it wants all pointers to be marked _Nullable or _Nonnull.
  Most of them are, but some aren't.  Who knows why.

- `src/web_service/verify_user_jwt.cpp`: Disable another warning when
  including `jwt.hpp`.

- `src/input_common/input_poller.cpp`: Add missing `override` specifiers.

- src/common/swap.h: Remove redundant `operator&amp;`.  In general, this
  file declares three overloads of each operator.  Using `+` as an
  example, the overloads are:

  - a member function for `swapped_t + integer`
  - a member function for `swapped_t + swapped_t`
  - a free function for `integer + swapped_t`

  But for `operator&amp;`, there was an additional free function for
  `swapped_t + integer`, which was redundant with the member function.
  This caused a GCC warning saying "ISO C++ says that these are
  ambiguous".
</pre>
</div>
</content>
</entry>
<entry>
<title>general: Silence -Wshadow{,-uncaptured-local} warnings</title>
<updated>2023-07-18T23:31:35+00:00</updated>
<author>
<name>lat9nq</name>
<email>22451773+lat9nq@users.noreply.github.com</email>
</author>
<published>2023-07-18T23:31:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=71b3b2a2f0f0ec5d0a0061d3d7ea42a1f63ae1de'/>
<id>71b3b2a2f0f0ec5d0a0061d3d7ea42a1f63ae1de</id>
<content type='text'>
These occur in the latest commits in LLVM Clang.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These occur in the latest commits in LLVM Clang.
</pre>
</div>
</content>
</entry>
<entry>
<title>general: fixes for gcc 13</title>
<updated>2023-04-02T23:02:04+00:00</updated>
<author>
<name>Liam</name>
<email>byteslice@airmail.cc</email>
</author>
<published>2023-04-02T23:02:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=a9623d5f550c8fc63f436a40f43bfbf539ac0853'/>
<id>a9623d5f550c8fc63f436a40f43bfbf539ac0853</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>externals: Update cpp-httplib to latest</title>
<updated>2023-02-21T19:55:37+00:00</updated>
<author>
<name>Alexandre Bouvier</name>
<email>contact@amb.tf</email>
</author>
<published>2023-02-18T22:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=83afc124759673af58435b8791dd357bf751642c'/>
<id>83afc124759673af58435b8791dd357bf751642c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cmake: prefer system libraries</title>
<updated>2022-12-04T16:09:25+00:00</updated>
<author>
<name>Alexandre Bouvier</name>
<email>contact@amb.tf</email>
</author>
<published>2022-11-25T18:35:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=8e17b5469fc7f5211fc3e24841896ea030adce84'/>
<id>8e17b5469fc7f5211fc3e24841896ea030adce84</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: Consolidate common PCH headers</title>
<updated>2022-11-30T23:30:30+00:00</updated>
<author>
<name>ameerj</name>
<email>52414509+ameerj@users.noreply.github.com</email>
</author>
<published>2022-11-30T04:22:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=5b5612c1cc1ef7a4888e7c45e41b15433127a2e5'/>
<id>5b5612c1cc1ef7a4888e7c45e41b15433127a2e5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: Use precompiled headers</title>
<updated>2022-11-29T23:50:49+00:00</updated>
<author>
<name>ameerj</name>
<email>52414509+ameerj@users.noreply.github.com</email>
</author>
<published>2022-11-22T23:38:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=37bc5118ea8f5891741faba8963ce9ae5f88e946'/>
<id>37bc5118ea8f5891741faba8963ce9ae5f88e946</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Show error from cpp-httplib when we don't have a response to read (report errors while connecting to API) (#8999)</title>
<updated>2022-10-05T19:39:54+00:00</updated>
<author>
<name>Kyle Kienapfel</name>
<email>doctor.whom@gmail.com</email>
</author>
<published>2022-10-05T19:39:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=3b5a937125b0a6a78530065cf06aca88c2c9db04'/>
<id>3b5a937125b0a6a78530065cf06aca88c2c9db04</id>
<content type='text'>
Co-authored-by: Kyle Kienapfel &lt;Docteh@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Kyle Kienapfel &lt;Docteh@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
</feed>
