Skip to content

Commit

Permalink
Merge pull request #61 from vil02/add_missing_return_to_trait_c_cast
Browse files Browse the repository at this point in the history
fix: add missing `return` to `Trait::operator T(void)`
  • Loading branch information
mertcandav authored Jan 28, 2024
2 parents fb428b5 + 4a4061d commit 096e109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/trait.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ namespace jule
template <typename T>
inline operator T(void) noexcept
{
this->cast<T>(
return this->cast<T>(
#ifndef __JULE_ENABLE__PRODUCTION
"/api/trait.hpp"
#endif
Expand Down

0 comments on commit 096e109

Please sign in to comment.