Skip to content
Snippets Groups Projects
Commit 56421ce5 authored by Vicki Pfau's avatar Vicki Pfau
Browse files

Run linter

parent 55563c43
Branches comment_feature
No related tags found
No related merge requests found
......@@ -2,10 +2,10 @@
#ifdef _WIN32
// pyconfig.h doesn't seem to like hypot, so we need to work around it.
namespace std {
template <typename T>
static inline T _hypot(T x, T y) {
return hypot(x, y);
}
template<typename T>
static inline T _hypot(T x, T y) {
return hypot(x, y);
}
}
#endif
#include <pybind11/pybind11.h>
......@@ -120,7 +120,8 @@ struct PyRetroEmulator {
struct PyMemoryView {
Retro::AddressSpace& m_mem;
PyMemoryView(Retro::AddressSpace& mem) : m_mem(mem) {
PyMemoryView(Retro::AddressSpace& mem)
: m_mem(mem) {
}
int64_t extract(size_t address, const string& type) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment