| Index: remoting/host/linux/x_server_clipboard.cc
|
| diff --git a/remoting/host/linux/x_server_clipboard.cc b/remoting/host/linux/x_server_clipboard.cc
|
| index 1b70b2183a93bfe61cc8d35652461496dd395681..9e636ac3749eb1bd4c853bf3fc4e9999bb6304ed 100644
|
| --- a/remoting/host/linux/x_server_clipboard.cc
|
| +++ b/remoting/host/linux/x_server_clipboard.cc
|
| @@ -76,7 +76,7 @@ void XServerClipboard::Init(Display* display,
|
| targets_atom_ = atoms[3];
|
| timestamp_atom_ = atoms[4];
|
| utf8_string_atom_ = atoms[5];
|
| - COMPILE_ASSERT(kNumAtomNames >= 6, kAtomNames_too_small);
|
| + static_assert(kNumAtomNames >= 6, "kAtomNames is too small");
|
| } else {
|
| LOG(ERROR) << "XInternAtoms failed";
|
| }
|
|
|