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 := \ MODULE_OBJS := \
archive.o \ archive.o \
base-str.o \
concatstream.o \ concatstream.o \
config-manager.o \ config-manager.o \
coroutines.o \ coroutines.o \
@ -29,6 +28,7 @@ MODULE_OBJS := \
str.o \ str.o \
stream.o \ stream.o \
streamdebug.o \ streamdebug.o \
str-base.o \
str-enc.o \ str-enc.o \
encodings/singlebyte.o \ encodings/singlebyte.o \
system.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/hash-str.h"
#include "common/list.h" #include "common/list.h"
#include "common/memorypool.h" #include "common/memorypool.h"

View file

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

View file

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

View file

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