Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
84064ac4
Commit
84064ac4
authored
May 29, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warning about unused functions in qstring.cpp
parent
ec291cb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
qstring.cpp
qtools/qstring.cpp
+2
-3
No files found.
qtools/qstring.cpp
View file @
84064ac4
...
...
@@ -11492,8 +11492,6 @@ int QLigature::match(QString & str, unsigned int index)
return
0
;
}
#endif
// this function is just used in QString::compose()
static
inline
bool
format
(
QChar
::
Decomposition
tag
,
QString
&
str
,
int
index
,
int
len
)
...
...
@@ -11525,6 +11523,7 @@ static inline bool format(QChar::Decomposition tag, QString & str,
return
(
!
right
&&
!
left
);
}
}
// format()
#endif
/*
QString::compose() and visual() were developed by Gordon Tisher
...
...
@@ -11602,7 +11601,6 @@ static inline bool is_arabic(unsigned short x) {
((x >= 0xfb50) && (x <= 0xfdff)) ||
((x >= 0xfe70) && (x <= 0xfeff)));
}
#endif
static inline bool is_neutral(unsigned short dir) {
return ((dir == QChar::DirB) ||
...
...
@@ -11611,6 +11609,7 @@ static inline bool is_neutral(unsigned short dir) {
(dir == QChar::DirON) ||
(dir == QChar::DirNSM));
}
#endif
/*!
This function returns the basic directionality of the string (QChar::DirR for
...
...
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