Skip to content

Commit

Permalink
Do not base TemplatedApp on CachingApp
Browse files Browse the repository at this point in the history
  • Loading branch information
uNetworkingAB authored Nov 21, 2024
1 parent 6a6029f commit c7b5875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.h
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ struct TemplatedAppBase {

namespace uWS {
template <bool SSL>
using TemplatedApp = uWS::TemplatedAppBase<SSL, uWS::CachingApp<SSL>>;
using TemplatedApp = uWS::TemplatedAppBase<SSL, uWS::TemplatedAppBase<SSL>>;

typedef uWS::TemplatedApp<false> App;
typedef uWS::TemplatedApp<true> SSLApp;
Expand Down

0 comments on commit c7b5875

Please sign in to comment.