Refactor message_data for consistency in formatting

- Updated code style in message_data.cc and message_data.h for uniformity, specifically adjusting spacing around references and pointers.
- Improved readability by ensuring consistent use of `const` and reference qualifiers in function signatures.
- No functional changes were made; this commit focuses solely on code style enhancements.
This commit is contained in:
scawful
2025-09-26 22:49:14 -04:00
parent 575dc55487
commit 9b295d5d75
2 changed files with 46 additions and 44 deletions

View File

@@ -1,8 +1,10 @@
#ifndef YAZE_APP_EDITOR_MESSAGE_MESSAGE_DATA_H
#define YAZE_APP_EDITOR_MESSAGE_MESSAGE_DATA_H
#include <optional>
#include <regex>
#include <string>
#include <unordered_map>
#include <vector>
#include "absl/strings/str_format.h"