Skip to content

Commit

Permalink
Fixed type
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Dec 5, 2023
1 parent 5b79164 commit 0fe67d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/vsg/app/AnnotatedRecordTraversal.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class VSG_DECLSPEC AnnotatedRecordTraversal : public RecordTraversal
explicit AnnotatedRecordTraversal(uint32_t in_maxSlot = 2, std::set<Bin*> in_bins = {});

template<typename... Args>
static ref_ptr<RecordTraversal> create(Args&&... args)
static ref_ptr<AnnotatedRecordTraversal> create(Args&&... args)
{
return ref_ptr<RecordTraversal>(new RecordTraversal(args...));
return ref_ptr<AnnotatedRecordTraversal>(new AnnotatedRecordTraversal(args...));
}

vec4 debugColor = {.8f, .8f, .8f, 1.0f};
Expand Down

0 comments on commit 0fe67d8

Please sign in to comment.