Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace alloca with std::vector #10

Merged
merged 1 commit into from
Nov 2, 2023

Conversation

EagleTw
Copy link
Collaborator

@EagleTw EagleTw commented Nov 2, 2023

The reason as follows:

  1. The alloca() function is machine- and compiler-dependent.
    We should use machine independent container instead.
  2. The alloca() function has stack overflow potentail. If the
    allocation causes stack overflow, program behavior is undefined.

@EagleTw EagleTw force-pushed the AddCommentWhileStudying branch from 638eeed to 022564e Compare November 2, 2023 15:18
jserv

This comment was marked as outdated.

@EagleTw EagleTw force-pushed the AddCommentWhileStudying branch from 022564e to 339629e Compare November 2, 2023 15:19
Copy link
Owner

@jserv jserv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you tend to add comments, don't change the real code.

@EagleTw EagleTw force-pushed the AddCommentWhileStudying branch from c65a9b0 to 7074bb9 Compare November 2, 2023 15:28
The reason as follows:

1. The alloca() function is machine- and compiler-dependent.
   We should use machine independent container instead.
2. The alloca() function has stack overflow potentail. If the
   allocation causes stack overflow, program behavior is undefined.
@EagleTw EagleTw force-pushed the AddCommentWhileStudying branch from 7074bb9 to 77556ff Compare November 2, 2023 15:38
@EagleTw EagleTw changed the title Add comment while studying Replace alloca with std::vector Nov 2, 2023
@jserv jserv merged commit 2a199ec into jserv:master Nov 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants