About 976,000 results
Open links in new tab
  1. What does the [Flags] Enum Attribute mean in C#?

    Aug 12, 2008 · Flags itself does nothing. Also, C# does not require Flags per se. But the ToString implementation of your enum uses Flags, and so does Enum.IsDefined, Enum.Parse, etc. Try …

  2. How to read and write x86 flags registers directly?

    Some flags can be set or cleared directly with specific instructions: CLC, STC, and CMC: clear, set, and complement the carry flag CLI and STI: clear and set the interrupt flag (which should …

  3. What are the useful GCC flags for C? - Stack Overflow

    Beyond setting -Wall, and setting -std=XXX, what other really useful, but less known compiler flags are there for use in C? I'm particularly interested in any additional warnings, and/or and …

  4. Are Fast Flags Really Bannable? - Roblox

    May 17, 2025 · Hello! I’ve been hearing multiple things about Fast Flags and whether they are bannable or not, and whether they will be removed in the future. I know there are a few fast …

  5. Fast Flags ClientAppSettings.json Folder Locations for most

    Oct 3, 2024 · Recently I wanted to figure out how to enable Fast Flags on iOS. Ending up finding no results about where the folder path may be, that I started to attempt many things to find it. …

  6. Add frequently used flags by the community to the Allowed Flags …

    Sep 29, 2025 · Fast Flags is a beloved but also often misused feature of the Roblox client, is increasingly a contributing factor to cheating and abuse, and in some cases can destabilize …

  7. c++ - Override compile flags for single files - Stack Overflow

    Aug 23, 2017 · But how do you actually set the compile flags for files separately without appending them. For example I want to use different compile flags for the resulting target than …

  8. Fast flags are being used as cheats - Engine Bugs - Roblox

    Apr 22, 2024 · Certain fast flags are being abused for various cheats in games. Some of these can be super game breaking, others can give really unfair advantages. A lot of people using …

  9. Set CFLAGS and CXXFLAGS options using CMake - Stack Overflow

    Apr 10, 2012 · Setting the flags in the environment like this is the only way to do it without modifying your CMakeLists.txt. Note that the environment value is only read on first …

  10. How to check if any flags of a flag combination are set?

    Aug 27, 2009 · Is there a simpler way to check if any of the flags of a combined flag constant are set than the following? This checks that both A and B are set, and ignores whether any other …