Use nested namespaces
This commit is contained in:
parent
61fbe8cecd
commit
6fa13b2056
|
@ -21,8 +21,7 @@
|
|||
|
||||
#include "BusCtrl.h"
|
||||
|
||||
namespace riscv_tlm {
|
||||
namespace peripherals {
|
||||
namespace riscv_tlm::peripherals {
|
||||
/**
|
||||
* @brief Simple timer peripheral
|
||||
*
|
||||
|
@ -69,5 +68,4 @@ namespace riscv_tlm {
|
|||
sc_core::sc_event timer_event; /**< event */
|
||||
};
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -19,8 +19,7 @@
|
|||
#include "tlm.h"
|
||||
#include "tlm_utils/simple_target_socket.h"
|
||||
|
||||
namespace riscv_tlm {
|
||||
namespace peripherals {
|
||||
namespace riscv_tlm::peripherals {
|
||||
/**
|
||||
* @brief Simple trace peripheral
|
||||
*
|
||||
|
@ -62,5 +61,4 @@ namespace riscv_tlm {
|
|||
int xtermPid{};
|
||||
};
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -20,8 +20,7 @@
|
|||
|
||||
#include "Trace.h"
|
||||
|
||||
namespace riscv_tlm {
|
||||
namespace peripherals {
|
||||
namespace riscv_tlm::peripherals {
|
||||
|
||||
void Trace::xtermLaunch(char *slaveName) const {
|
||||
char *arg;
|
||||
|
@ -114,4 +113,3 @@ namespace riscv_tlm {
|
|||
trans.set_response_status(tlm::TLM_OK_RESPONSE);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue