Skip to content

Commit

Permalink
utf-8 without boms to utf-8
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Mar 17, 2014
1 parent 69302bb commit af6d8c9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions include/libcopp/utils/std/smart_ptr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/**
*
* @file smart_ptr.h
* @brief 导入智能指针库
Expand Down Expand Up @@ -78,4 +78,3 @@
#endif

#endif

2 changes: 1 addition & 1 deletion include/libcopp/utils/std/thread.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/**
* @file thread.h
* @brief 导入多线程特性支持兼容层
* Licensed under the MIT licenses.
Expand Down
2 changes: 1 addition & 1 deletion sample/sample_default_manager.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* sample_default_manager.cpp
*
* Created on: 2014年3月17日
Expand Down
6 changes: 3 additions & 3 deletions test/case/couroutine_context_this_coroutine_test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* couroutine_context_this_coroutine_test.cpp
*
* Created on: 2014年3月17日
Expand All @@ -7,7 +7,7 @@
* Released under the MIT license
*/

#if defined(__cplusplus) && __cplusplus >= 201103L
#if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(_MSC_VER) && _MSC_VER >= 1800)

#include <iostream>
#include <cstdio>
Expand Down Expand Up @@ -66,7 +66,7 @@ class test_this_context_get_cotoutine_runner : public copp::coroutine_manager_ru
static int max_thd_count;
};

std::atomic_int test_this_context_get_cotoutine_runner::cur_thd_count(0);
std::atomic_int test_this_context_get_cotoutine_runner::cur_thd_count;
int test_this_context_get_cotoutine_runner::max_thd_count = 0;

void test_this_context_thread_func(copp::default_coroutine_manager& co_mgr,
Expand Down

0 comments on commit af6d8c9

Please sign in to comment.