Skip to content

Commit

Permalink
Fix error in LwString with template parameter declared but. not used
Browse files Browse the repository at this point in the history
  • Loading branch information
jwwalker authored and darksylinc committed Dec 19, 2024
1 parent c34e880 commit 7a8cc4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OgreMain/include/OgreLwString.h
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ namespace Ogre
template <typename M, typename N, typename O, typename P, typename Q, typename R, typename S,
typename T>
LwString &a( const M &a0, const N &a1, const O &a2, const P &a3, const Q &a4, const R &a5,
const S &a6, const S &a7 )
const S &a6, const T &a7 )
{
this->a( a0, a1, a2, a3 );
this->a( a4, a5, a6, a7 );
Expand Down

0 comments on commit 7a8cc4d

Please sign in to comment.