Skip to content

Commit de9f37d

Browse files
gengjiawenaddaleax
authored andcommitted
src: make deleted function public in agent.h
Signed-off-by: gengjiawen <technicalcute@gmail.com> PR-URL: #25909 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
1 parent 4dca3ab commit de9f37d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tracing/agent.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ class AgentWriterHandle {
6363

6464
inline v8::TracingController* GetTracingController();
6565

66-
private:
67-
inline AgentWriterHandle(Agent* agent, int id) : agent_(agent), id_(id) {}
68-
6966
AgentWriterHandle(const AgentWriterHandle& other) = delete;
7067
AgentWriterHandle& operator=(const AgentWriterHandle& other) = delete;
7168

69+
private:
70+
inline AgentWriterHandle(Agent* agent, int id) : agent_(agent), id_(id) {}
71+
7272
Agent* agent_ = nullptr;
7373
int id_;
7474

0 commit comments

Comments
 (0)