Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 29, 2021
1 parent a393098 commit 23b23aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions doomsday/libs/core/include/de/bitarray.h
Expand Up @@ -32,6 +32,7 @@ class DE_PUBLIC BitArray
{
public:
BitArray(dsize initialSize = 0);
BitArray(const BitArray &) = default;

bool isEmpty() const;
bool testBit(dsize pos) const;
Expand Down
6 changes: 3 additions & 3 deletions doomsday/libs/doomsday/include/doomsday/defs/dedtypes.h
Expand Up @@ -101,7 +101,7 @@ typedef struct LIBDOOMSDAY_PUBLIC ded_ptcstage_s {
float particleRadius(int ptcIDX) const;
} ded_ptcstage_t;

typedef struct {
typedef struct ded_sprid_s {
char id[DED_SPRITEID_LEN + 1];

void release() {}
Expand Down Expand Up @@ -170,14 +170,14 @@ struct ded_text_t {
}
};

typedef struct {
typedef struct ded_tenviron_s {
ded_stringid_t id;
DEDArray<ded_uri_t> materials;

void release() { materials.clear(); }
} ded_tenviron_t;

typedef struct {
typedef struct ded_value_s {
char *id;
char *text;

Expand Down

0 comments on commit 23b23aa

Please sign in to comment.