-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/52025/#review149634
-----------------------------------------------------------
Just curious whether this is just a drive-by cleanup, or whether it's caused us
problems?
Also, could we add a `static_assert`? something like:
```
static_assert(
std::is_base_of<Process, T>::value,
"`Process<T>` requires the CRTP pattern. Please have `T` inherit from
`Process<T>`.");
```
- Michael Park
On Sept. 19, 2016, 10:19 a.m., Benjamin Bannier wrote:
>
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/52025/
> -----------------------------------------------------------
>
> (Updated Sept. 19, 2016, 10:19 a.m.)
>
>
> Review request for mesos and Michael Park.
>
>
> Repository: mesos
>
>
> Description
> -------
>
> `Process` is a CRTP class where we know that `T` is a valid derived
> class. Also, it is customary to use `static_cast` when implementing
> CRTP methods.
>
> This change uses a `static_cast` instead of a `dynamic_cast`;
> `dynamic_cast` can result in a `nullptr` which should be checked. Here
> this is not required, so `static_cast` is good enough for this use
> case.
>
>
> Diffs
> -----
>
> 3rdparty/libprocess/include/process/process.hpp
> 54c7d2e7ed3923ab15ab86e36552b023f9de5215
>
> Diff: https://reviews.apache.org/r/52025/diff/
>
>
> Testing
> -------
>
> make check (OS X, clang/trunk w/o optimizations)
>
>
> Thanks,
>
> Benjamin Bannier
>
>