diff options
| author | TheKodeToad <TheKodeToad@proton.me> | 2026-02-25 10:40:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-25 10:40:28 +0000 |
| commit | 3538933614059f0f44388a2b16f3db25ce42285b (patch) | |
| tree | 4b27edab2e7300c2e14fe98bb86f118de7a3eac1 | |
| parent | 531449ba1c930c98e0bcf5d332b237a8566f9d78 (diff) | |
| parent | 59ea781f5d45b24cf3819a44902cacf297785d84 (diff) | |
| download | Project-Tick-3538933614059f0f44388a2b16f3db25ce42285b.tar.gz Project-Tick-3538933614059f0f44388a2b16f3db25ce42285b.zip | |
Merge pull request #13 from Octol1ttle/master
change(tag_list::ctor): rename "type" to "content_type"
| -rw-r--r-- | include/tag_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tag_list.h b/include/tag_list.h index e2c9b7bb7c..07b68c25fc 100644 --- a/include/tag_list.h +++ b/include/tag_list.h @@ -67,7 +67,7 @@ public: tag_list(): tag_list(tag_type::Null) {} ///Constructs an empty list with the given content type - explicit tag_list(tag_type type): el_type_(type) {} + explicit tag_list(tag_type content_type): el_type_(content_type) {} ///Constructs a list with the given contents tag_list(std::initializer_list<int8_t> init); |
