Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
ygopro
Commits
1aba6674
Commit
1aba6674
authored
Oct 22, 2024
by
wind2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/patch-wcscpy' into develop
parents
23c372bd
817e1a22
Pipeline
#30636
failed with stages
in 4 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gframe/irrUString.h
gframe/irrUString.h
+3
-2
No files found.
gframe/irrUString.h
View file @
1aba6674
...
...
@@ -38,6 +38,7 @@
#include <utility>
#include <iterator>
#include <string>
namespace
irr
{
...
...
@@ -387,7 +388,7 @@ public:
}
template
<
class
T
>
ustring16
(
const
T
&
other
)
ustring16
(
const
std
::
basic_string
<
T
>
&
other
)
:
data_
(
nullptr
),
size_
(
0
),
size_raw_
(
0
)
{
assign
(
other
.
data
(),
static_cast
<
u32
>
(
other
.
size
()));
}
...
...
@@ -421,7 +422,7 @@ public:
}
template
<
class
T
>
ustring16
&
operator
=
(
const
T
&
other
)
{
ustring16
&
operator
=
(
const
std
::
basic_string
<
T
>
&
other
)
{
assign
(
other
.
data
(),
static_cast
<
u32
>
(
other
.
size
()));
return
*
this
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment