Skip to content

Commit

Permalink
fix gcc compilation (redundant inline)
Browse files Browse the repository at this point in the history
  • Loading branch information
floooh committed Oct 18, 2024
1 parent 481f882 commit 3ae2448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shdc/input.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const ImageSampleTypeTag* Input::find_image_sample_type_tag(const std::string& t
}
}

inline const SamplerTypeTag* Input::find_sampler_type_tag(const std::string& smp_name) const {
const SamplerTypeTag* Input::find_sampler_type_tag(const std::string& smp_name) const {
auto it = sampler_type_tags.find(smp_name);
if (it != sampler_type_tags.end()) {
return &sampler_type_tags.at(smp_name);
Expand Down

0 comments on commit 3ae2448

Please sign in to comment.