Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonathan Wilkes
flext
Commits
cb714e88
Commit
cb714e88
authored
Apr 08, 2015
by
Thomas Grill
Browse files
fixing too much templating
parent
3888b6f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
source/flsupport.h
View file @
cb714e88
...
...
@@ -1396,12 +1396,12 @@ protected:
// gcc doesn't like these to be included into the flext class (even if static)
FLEXT_TEMPLATE
inline
bool
operator
==
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
==
0
;
}
FLEXT_TEMPLATE
inline
bool
operator
!=
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
!=
0
;
}
FLEXT_TEMPLATE
inline
bool
operator
<
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
<
0
;
}
FLEXT_TEMPLATE
inline
bool
operator
<=
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
<=
0
;
}
FLEXT_TEMPLATE
inline
bool
operator
>
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
>
0
;
}
FLEXT_TEMPLATE
inline
bool
operator
>=
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
>=
0
;
}
inline
bool
operator
==
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
==
0
;
}
inline
bool
operator
!=
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
!=
0
;
}
inline
bool
operator
<
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
<
0
;
}
inline
bool
operator
<=
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
<=
0
;
}
inline
bool
operator
>
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
>
0
;
}
inline
bool
operator
>=
(
const
t_atom
&
a
,
const
t_atom
&
b
)
{
return
flext
::
CmpAtom
(
a
,
b
)
>=
0
;
}
//! @} // FLEXT_SUPPORT
...
...
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