1 /* 2 * Copyright (C) 2019 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #include "perfetto/ext/base/string_view.h" 18 19 namespace perfetto { 20 namespace base { 21 22 // Without ignoring this warning we get the message: 23 // error: out-of-line definition of constexpr static data member is redundant 24 // in C++17 and is deprecated 25 // when using clang-cl in Windows. 26 #if defined(__GNUC__) // GCC & clang 27 #pragma GCC diagnostic push 28 #pragma GCC diagnostic ignored "-Wdeprecated" 29 #endif // __GNUC__ 30 31 // static 32 constexpr size_t StringView::npos; 33 34 #if defined(__GNUC__) 35 #pragma GCC diagnostic pop 36 #endif 37 38 } // namespace base 39 } // namespace perfetto 40