Skip to content

Commit

Permalink
List: Rename the container.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZSShen committed Sep 4, 2016
1 parent 090db71 commit 45f946f
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion include/cds.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "util.h"
#include "container/vector.h"
#include "container/linked_list.h"
#include "container/list.h"
#include "container/tree_map.h"
#include "container/hash_map.h"
#include "container/hash_set.h"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/linked_list.c → src/list.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* IN THE SOFTWARE.
*/

#include "container/linked_list.h"
#include "container/list.h"


/*===========================================================================*
Expand Down
2 changes: 1 addition & 1 deletion test/unit_linked_list.c → test/unit_list.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "container/linked_list.h"
#include "container/list.h"
#include "CUnit/Util.h"
#include "CUnit/Basic.h"

Expand Down

0 comments on commit 45f946f

Please sign in to comment.