Ubpa

Results 11 comments of Ubpa

@fffaraz Sorry to bother you. Could you please review this issue? If you think it doesn't meet the criteria, you could close the issue for me. Thanks! :)

In gcc and clang, the results have no class-key (`struct`, `class` and `enum`). For some cross-compiler program using `nameof`, it's necessary to keep results same in different compilers. So I...

yeah, it should be tested first

If the name is end with `const` / `volatile` / `const volatile`, then move it to the beginning of the name. Then run the function recursively for every substrings within...

Would you give it a try? Or do you need to see my implementation first? Maybe I can try it when I'm free.

I make it by another way. The name of type is same in different compiler. [Name.h](https://github.com/Ubpa/UTemplate/blob/master/include/UTemplate/Name.h) [example](https://github.com/Ubpa/UTemplate/blob/master/src/test/10_Name/main.cpp)

You can put `mnist.npz` to `user-root/.keras/datasets/`. `tf.keras.datasets.mnist.load_data()` will try to load it.

```python class DataLoader(): def __init__(self): (train_images, train_labels), (test_images, test_labels) = tf.keras.datasets.mnist.load_data() train_images = train_images.reshape(-1, 28 * 28) / 255.0 test_images = test_images.reshape(-1, 28 * 28) / 255.0 self.train_data = train_images...

There are actually a number of bugs with this piece of code. 1. You forget to copy the `value` when expanding on stack. 2. You forget to copy the `value`...

demo 已更新 e6e73fa 主要是 demo 是工程外部的,所以没去测试到,然后就忘了有这回事。。。