Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
edmond-chow authored Dec 14, 2023
1 parent a54f956 commit 3e1c044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions C++/Complex Linux.rar/Complex/Complex/Module.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#include <array>
#include <functional>
#include <stdexcept>
static constexpr const wchar_t SignBefore[] = LR"((-|\+|^))";
static constexpr const wchar_t UnsignedReal[] = LR"((\d+)(\.\d+|)([Ee](-|\+|)(\d+)|))";
static constexpr const wchar_t SignAfter[] = LR"((-|\+|$))";
inline constexpr const wchar_t SignBefore[] = LR"((-|\+|^))";
inline constexpr const wchar_t UnsignedReal[] = LR"((\d+)(\.\d+|)([Ee](-|\+|)(\d+)|))";
inline constexpr const wchar_t SignAfter[] = LR"((-|\+|$))";
inline std::wstring AddGroup(const std::wstring& Pattern, bool Optional)
{
return L"(" + Pattern + (Optional ? L"|" : L"") + L")";
Expand Down

0 comments on commit 3e1c044

Please sign in to comment.