From 6e10a8abf17c235ea8b16e4c3afba60ce7ebfaeb Mon Sep 17 00:00:00 2001 From: Chaoguang Lin Date: Tue, 11 May 2021 14:38:21 -0700 Subject: [PATCH] fix header's include order --- flow/ThreadHelper.actor.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/flow/ThreadHelper.actor.cpp b/flow/ThreadHelper.actor.cpp index 4c0a89c7d5..06645f8d3e 100644 --- a/flow/ThreadHelper.actor.cpp +++ b/flow/ThreadHelper.actor.cpp @@ -18,13 +18,14 @@ * limitations under the License. */ +#include + +#include "flow/flow.h" +#include "flow/network.h" #include "flow/ThreadHelper.actor.h" #include "flow/Error.h" #include "flow/UnitTest.h" #include "flow/actorcompiler.h" // This must be the last #include. -#include "flow/flow.h" -#include "flow/network.h" -#include ThreadCallback* ThreadCallback::addCallback(ThreadCallback* cb) { return (new ThreadMultiCallback())->addCallback(this)->addCallback(cb);