fix most cpplint checkpoint

This commit is contained in:
zhangzifa
2019-02-18 18:03:41 +08:00
committed by Jackson Tian
parent 043df1b674
commit fdc3251134
90 changed files with 1869 additions and 2031 deletions

View File

@@ -16,14 +16,14 @@
#include <alibabacloud/core/Runnable.h>
using namespace AlibabaCloud;
namespace AlibabaCloud {
Runnable::Runnable(const std::function<void()> f) :
f_(f)
{
f_(f) {
}
void Runnable::run() const
{
void Runnable::run() const {
f_();
}
} // namespace AlibabaCloud