Skip to content

Commit

Permalink
Allow MultiPartParser to be movable (drogonframework#2107)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mis1eader-dev committed Jul 23, 2024
1 parent e786907 commit 500d44f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/inc/drogon/MultiPart.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ class DROGON_EXPORT MultiPartParser
{
public:
MultiPartParser(){};
MultiPartParser(const MultiPartParser &other) = default; // Copyable
MultiPartParser(MultiPartParser &&other) = default; // Movable
~MultiPartParser(){};
/// Get files, This method should be called after calling the parse()
/// method.
Expand Down

0 comments on commit 500d44f

Please sign in to comment.