Skip to content

Commit

Permalink
refactor: move interface to traits
Browse files Browse the repository at this point in the history
  • Loading branch information
jenspots committed Apr 14, 2024
1 parent 42218e3 commit 979c6fe
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/wheel/eht/impl.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "wheel/eht/header.h"
#include "wheel/interface/header.h"
#include "wheel/traits/header.h"
#include "wheel/misc/bitops.h"
#include "wheel/optional/header.h"
#include "wheel/vec/header.h"
Expand Down
2 changes: 1 addition & 1 deletion include/wheel/rc/impl.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "wheel/interface/header.h"
#include "wheel/traits/header.h"
#include <stdlib.h>

#include "header.h"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion include/wheel/wheel/def.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "wheel/bst/def.h"
#include "wheel/eht/def.h"
#include "wheel/interface/def.h"
#include "wheel/traits/def.h"
#include "wheel/linked_list/def.h"
#include "wheel/optional/def.h"
#include "wheel/rc/def.h"
Expand Down
2 changes: 1 addition & 1 deletion include/wheel/wheel/undef.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "wheel/bst/undef.h"
#include "wheel/eht/undef.h"
#include "wheel/interface/undef.h"
#include "wheel/traits/undef.h"
#include "wheel/linked_list/undef.h"
#include "wheel/optional/undef.h"
#include "wheel/rc/undef.h"
Expand Down

0 comments on commit 979c6fe

Please sign in to comment.