Skip to content

Commit 3db74db

Browse files
authored
fix: remove u8 literals
1 parent d01d902 commit 3db74db

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/matplot/core/line_spec.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ namespace matplot {
7373
break;
7474
case '>':
7575
marker_style_ = marker_style::custom;
76-
custom_marker_ = u8"";
76+
custom_marker_ = "";
7777
break;
7878
case '<':
7979
marker_style_ = marker_style::custom;
80-
custom_marker_ = u8"";
80+
custom_marker_ = "";
8181
break;
8282
case 'p':
8383
marker_style_ = marker_style::pentagram;
@@ -389,11 +389,11 @@ namespace matplot {
389389
break;
390390
case '>':
391391
marker_style_ = marker_style::custom;
392-
custom_marker_ = u8"";
392+
custom_marker_ = "";
393393
break;
394394
case '<':
395395
marker_style_ = marker_style::custom;
396-
custom_marker_ = u8"";
396+
custom_marker_ = "";
397397
break;
398398
case 'P':
399399
case 'p':
@@ -539,4 +539,4 @@ namespace matplot {
539539
std::array<float, 4>({0, color[0], color[1], color[2]}));
540540
}
541541

542-
} // namespace matplot
542+
} // namespace matplot

0 commit comments

Comments
 (0)