Skip to content
Snippets Groups Projects
Commit c3903e1b authored by Aron Leibfried's avatar Aron Leibfried
Browse files

Put PPUOnDLS out of tcc file to prevent namespace clashes

Change-Id: Ib4f361bb373e450ae8a1c2aeab5bf925eaf16957
parent 82339e6f
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,12 @@
namespace libnux::vx {
enum class PPUOnDLS : uint32_t
{
top = 0,
bottom = 1
};
#include "libnux/vx/dls.tcc"
} // namespace libnux::vx
enum class PPUOnDLS : uint32_t
{
top,
bottom
};
/* Size of synram */
constexpr static uint32_t dls_num_rows = 256;
constexpr static uint32_t dls_num_columns = 256;
......
#pragma once
#include <cstdint>
#include "libnux/vx/dls.h"
#include "libnux/vx/v1/omnibus.h"
namespace libnux::vx::v1 {
using libnux::vx::PPUOnDLS;
#include "libnux/vx/dls.tcc"
} // namespace libnux::vx::v1
#pragma once
#include <cstdint>
#include "libnux/vx/dls.h"
#include "libnux/vx/v2/omnibus.h"
namespace libnux::vx::v2 {
using libnux::vx::PPUOnDLS;
#include "libnux/vx/dls.tcc"
} // namespace libnux::vx::v2
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment