fix header's include order

This commit is contained in:
Chaoguang Lin 2021-05-11 14:38:21 -07:00
parent 9a6151d3fc
commit 6e10a8abf1
1 changed files with 4 additions and 3 deletions

View File

@ -18,13 +18,14 @@
* limitations under the License.
*/
#include <string>
#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 <string>
ThreadCallback* ThreadCallback::addCallback(ThreadCallback* cb) {
return (new ThreadMultiCallback())->addCallback(this)->addCallback(cb);