Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,17 @@
/build
/docker/build
/docker/conan

# sampctl files
/samp-npc
/samp03svr
/pawn.lock
/announce
/server.cfg
/dependencies/
/server_log.txt
/sampctl_build_file.inc
*.amx

# Zed editor settings
.zed/
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ elseif(UNIX)
specifiers.cpp
sscanf.cpp
utils.cpp
error.cpp
)
endif()

set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT sscanf)

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2573,7 +2573,7 @@ This code tries to be slightly clever, but fails. The correct way to check for
There is a third version of this error which looks like:

```
error 004: function "sscanf" is not implemented <library>sscanf</library> <remarks> The main entry point. See the readme for vast amounts of information on how to call this function and all the details on what it does. This is a macro that calls <c>SSCANF__</c> and passes the current file and line number as well for improved error messages. </remarks>
error 004: function "sscanf" is not implemented <library>sscanf</library> <remarks> The main entry point. See the readme for vast amounts of information on how to call this function and all the details on what it does. This is a macro that calls <c>SSCANF__</c> and passes the current file and line number as well for improved error messages. </remarks>
```

For more information on why, see [this compiler issue](https://github.com/pawn-lang/compiler/issues/705).
Expand Down Expand Up @@ -3224,4 +3224,3 @@ the Initial Developer. All Rights Reserved.
* Added alternates via `|`.
* `SSCANF_GetErrorSpecifier` to get the error position in failure cases.
* `SSCANF_Debug` to dump a load of useful debugging information.

Loading