2a06ae8299
The test fails because TEST_STRING, a char[], is silently converted to a std::string, passed to remove_prefix, then the string is destroyed, but a pointer to the string is returned. Fix it by changing the signature of remove_prefix to use std::string_view to be more robust in handling raw char*. Test: run it Change-Id: I553c066907f09cf330c8b7a4659db5a1fee82cac
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef HEALTHD_ANIMATION_PARSER_H
|
|
#define HEALTHD_ANIMATION_PARSER_H
|
|
|
|
#include <string_view>
|
|
|
|
#include "animation.h"
|
|
|
|
namespace android {
|
|
|
|
bool parse_animation_desc(const std::string& content, animation* anim);
|
|
|
|
bool can_ignore_line(const char* str);
|
|
bool remove_prefix(std::string_view str, const char* prefix, const char** rest);
|
|
bool parse_text_field(const char* in, animation::text_field* field);
|
|
} // namespace android
|
|
|
|
#endif // HEALTHD_ANIMATION_PARSER_H
|