Use import utempl instead import utempl.*

This commit is contained in:
sha512sum 2024-08-23 23:09:57 +00:00
parent 4396d3525a
commit b440c81474
15 changed files with 15 additions and 21 deletions

View file

@ -1,6 +1,5 @@
import std; import std;
import utempl.attributes; import utempl;
import utempl.type_list;
#include <utempl/macro.hpp> #include <utempl/macro.hpp>
template <typename T> template <typename T>

View file

@ -1,4 +1,4 @@
import utempl.utils; import utempl;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,5 +1,5 @@
import fmt; import fmt;
import utempl.go_interface; import utempl;
import std; import std;
struct SomeInterfaceImpl { struct SomeInterfaceImpl {

View file

@ -1,5 +1,4 @@
import utempl.utils; import utempl;
import utempl.tuple;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,4 +1,4 @@
import utempl.utils; import utempl;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,4 +1,4 @@
import utempl.menu; import utempl;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,4 +1,4 @@
import utempl.meta_info; import utempl;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,4 +1,4 @@
import utempl.overloaded; import utempl;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,5 +1,4 @@
import utempl.utils; import utempl;
import utempl.tuple;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,5 +1,4 @@
import utempl.utils; import utempl;
import utempl.tuple;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,4 +1,4 @@
import utempl.utils; import utempl;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,7 +1,5 @@
#include <cassert> #include <cassert>
import utempl.utils; import utempl;
import utempl.tuple;
import utempl.overloaded;
import std; import std;
auto main() -> int { auto main() -> int {

View file

@ -1,7 +1,7 @@
module; module;
#include <gtest/gtest.h> #include <gtest/gtest.h>
export module tests.go_interface; export module tests.go_interface;
import utempl.go_interface; import utempl;
namespace utempl { namespace utempl {

View file

@ -1,7 +1,7 @@
module; module;
#include <gtest/gtest.h> #include <gtest/gtest.h>
export module tests.menu; export module tests.menu;
import utempl.menu; import utempl;
namespace utempl { namespace utempl {

View file

@ -1,7 +1,7 @@
module; module;
#include <gtest/gtest.h> #include <gtest/gtest.h>
export module tests.overloaded; export module tests.overloaded;
import utempl.overloaded; import utempl;
namespace utempl { namespace utempl {