Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
VTK
VTK
Commits
cfacede5
Commit
cfacede5
authored
Oct 08, 2019
by
Caitlin Ross
1
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'upstream-diy2' into update-diy
* upstream-diy2: diy2 2019-10-08 (80ba8295)
parents
a5c441d8
d890b443
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
9 deletions
+15
-9
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/core.h
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/core.h
+8
-2
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/format.h
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/format.h
+4
-4
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/pick.hpp
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/pick.hpp
+1
-1
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/stats.hpp
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/stats.hpp
+2
-2
No files found.
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/core.h
View file @
cfacede5
...
...
@@ -132,6 +132,12 @@
# endif
# endif
#endif
// Workaround broken [[deprecated]] in the Intel compiler.
#ifdef __INTEL_COMPILER
# define FMT_DEPRECATED_ALIAS
#else
# define FMT_DEPRECATED_ALIAS FMT_DEPRECATED
#endif
#ifndef FMT_BEGIN_NAMESPACE
# if FMT_HAS_FEATURE(cxx_inline_namespaces) || FMT_GCC_VERSION >= 404 || \
...
...
@@ -474,8 +480,8 @@ class basic_parse_context : private ErrorHandler {
using
format_parse_context
=
basic_parse_context
<
char
>
;
using
wformat_parse_context
=
basic_parse_context
<
wchar_t
>
;
using
parse_context
FMT_DEPRECATED
=
basic_parse_context
<
char
>
;
using
wparse_context
FMT_DEPRECATED
=
basic_parse_context
<
wchar_t
>
;
using
parse_context
FMT_DEPRECATED
_ALIAS
=
basic_parse_context
<
char
>
;
using
wparse_context
FMT_DEPRECATED
_ALIAS
=
basic_parse_context
<
wchar_t
>
;
template
<
typename
Context
>
class
basic_format_arg
;
template
<
typename
Context
>
class
basic_format_args
;
...
...
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/format.h
View file @
cfacede5
...
...
@@ -2441,7 +2441,7 @@ template <typename Handler, typename Char> struct id_adapter {
template
<
bool
IS_CONSTEXPR
,
typename
Char
,
typename
Handler
>
FMT_CONSTEXPR
void
parse_format_string
(
basic_string_view
<
Char
>
format_str
,
Handler
&&
handler
)
{
struct
writer
{
struct
pfs_
writer
{
FMT_CONSTEXPR
void
operator
()(
const
Char
*
begin
,
const
Char
*
end
)
{
if
(
begin
==
end
)
return
;
for
(;;)
{
...
...
@@ -2597,9 +2597,9 @@ void handle_dynamic_spec(Spec& value, arg_ref<typename Context::char_type> ref,
}
// namespace internal
template
<
typename
Range
>
using
basic_writer
FMT_DEPRECATED
=
internal
::
basic_writer
<
Range
>
;
using
writer
FMT_DEPRECATED
=
internal
::
writer
;
using
wwriter
FMT_DEPRECATED
=
using
basic_writer
FMT_DEPRECATED
_ALIAS
=
internal
::
basic_writer
<
Range
>
;
using
writer
FMT_DEPRECATED
_ALIAS
=
internal
::
writer
;
using
wwriter
FMT_DEPRECATED
_ALIAS
=
internal
::
basic_writer
<
internal
::
buffer_range
<
wchar_t
>>
;
/** The default argument formatter. */
...
...
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/pick.hpp
View file @
cfacede5
...
...
@@ -177,7 +177,7 @@ in(const RegularLink<Bounds>& link, //!< neighbors
neigh_bounds
=
link
.
bounds
(
n
);
// wrap neighbor bounds, if necessary, otherwise bounds will be unchanged
wrap_bounds
(
neigh_bounds
,
link
.
wrap
(
n
),
domain
,
link
.
dimension
()
);
wrap_bounds
(
neigh_bounds
,
link
.
wrap
(
n
),
domain
);
if
(
distance
(
neigh_bounds
,
p
)
==
0
)
*
out
++
=
n
;
...
...
ThirdParty/diy2/vtkdiy2/include/vtkdiy2/stats.hpp
View file @
cfacede5
...
...
@@ -148,8 +148,8 @@ struct Profiler
void
operator
<<
(
std
::
string
name
)
{
enter
(
name
);
}
void
operator
>>
(
std
::
string
name
)
{
exit
(
name
);
}
void
enter
(
std
::
string
name
)
{
total
<<
name
;
}
void
exit
(
std
::
string
name
)
{
total
>>
name
;
}
void
enter
(
std
::
string
name
)
{}
void
exit
(
std
::
string
name
)
{}
void
output
(
std
::
ostream
&
out
,
std
::
string
=
""
)
const
{
...
...
Caitlin Ross
@caitlin.ross
mentioned in commit
69f71009
·
Oct 09, 2019
mentioned in commit
69f71009
mentioned in commit 69f7100977c7da86b39a3c4c8a899b1a75c63782
Toggle commit list
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