COMMON: Rename base-str.* to str-base.* for consistency and file grouping

This commit is contained in:
Eugene Sandulenko 2023-01-05 14:21:23 +01:00
parent 0ee9002929
commit 63f39ca792
No known key found for this signature in database
GPG Key ID: 014D387312D34F08
5 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,6 @@ MODULE := common
MODULE_OBJS := \
archive.o \
base-str.o \
concatstream.o \
config-manager.o \
coroutines.o \
@ -29,6 +28,7 @@ MODULE_OBJS := \
str.o \
stream.o \
streamdebug.o \
str-base.o \
str-enc.o \
encodings/singlebyte.o \
system.o \

View File

@ -19,7 +19,7 @@
*
*/
#include "common/base-str.h"
#include "common/str-base.h"
#include "common/hash-str.h"
#include "common/list.h"
#include "common/memorypool.h"

View File

@ -19,8 +19,8 @@
*
*/
#ifndef COMMON_BASE_STRING_H
#define COMMON_BASE_STRING_H
#ifndef COMMON_STR_BASE_H
#define COMMON_STR_BASE_H
#include "common/scummsys.h"
#include "common/str-enc.h"

View File

@ -25,7 +25,7 @@
#include "common/scummsys.h"
#include "common/str-enc.h"
#include "common/ustr.h"
#include "common/base-str.h"
#include "common/str-base.h"
#include <stdarg.h>

View File

@ -25,7 +25,7 @@
#include "common/scummsys.h"
#include "common/util.h"
#include "common/str-enc.h"
#include "common/base-str.h"
#include "common/str-base.h"
namespace Common {